1

特定の Facebook 投稿にコメントしようとしていますが、以下のエラーが発生しました。

私を助けてください

NSString *myurl=[NSString stringWithFormat:@"https://graph.facebook.com/298723893602606/comments?message=\'This is my message\'&access_token=%@",FBSession.activeSession.accessToken];
    NSString  *theurl=[myurl stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
    NSMutableURLRequest *theRequest=[NSMutableURLRequest requestWithURL:[NSURL URLWithString:theurl]cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:60.0];
    [theRequest setHTTPMethod:@"POST"];
    NSURLResponse *response;
    NSError* error12;
    NSData *data=[NSURLConnection sendSynchronousRequest:theRequest returningResponse:&response error:&error12];
    NSString *strResponse=[[NSString alloc]initWithData:data encoding:NSUTF8StringEncoding];
    NSLog(@"Response String=%@",strResponse);

エラー:

Response String={"error":{"message":"(#200) Requires extended permission: publish_stream","type":"OAuthException","code":200}}
4

0 に答える 0