私はiOSでFacebookグラフAPIを使用して、iPhoneからのニュースフィードを共有しています。しかし、次のエラーが発生します。
{com.facebook.sdk:ParsedJSONResponseKey={
body =     {
    error =         {
        code = 2500;
        message = "Unknown path components: /http://newswatch.nationalgeographic.com/2013/01/20/top-25-wild-bird-photographs-of-the-week-34;
        type = OAuthException;
    };
};
code = 400;
}、com.facebook.sdk:HTTPStatusCode = 400}
以下は、btnClickでニュースフィードを共有するための私のコードの一部です。
if ([strType isEqualToString:@"link"]) {
            text = [[resultArrFeed objectAtIndex:selectedIndex] objectForKey:@"caption"];
            if (text == nil) {
                text = [[resultArrFeed objectAtIndex:selectedIndex] objectForKey:@"name"];
            }
            if (text == nil) {
                text = [[resultArrFeed objectAtIndex:selectedIndex] objectForKey:@"story"];
            }
            NSDictionary *dict = [resultArrFeed objectAtIndex:selectedIndex];
            dic=[NSDictionary  dictionaryWithObjectsAndKeys:text,@"message",nil];
            NSLog(@"%@", dict);
           // NSString *str = [dict valueForKey:@"link"];
            NSString *str = [dict valueForKey:@"link"];
            request=[NSMutableString stringWithString: @"me/feed/"];
            [request appendString:str];
             NSLog(@"appended : %@", request);
        }
photoあるタイプのニュースフィードを共有しようとすると、同じコードが機能します。どこが間違っているのですか?この問題を解決するにはどうすればよいですか?