开发者

How to retrieve users wall value in facebook api

开发者 https://www.devze.com 2023-03-14 03:06 出处:网络
I am integrating facebook api in my application and this is running well. I can login and able to post text on wall. But now I want to show all my wall text in application. I am writing below query bu

I am integrating facebook api in my application and this is running well. I can login and able to post text on wall. But now I want to show all my wall text in application. I am writing below query but this is showing only that wall posted which is posted by this application.

NSString *fql = [NSString stringWithFormat:@"SELECT actor_id, message FROM stream WHERE source_id = %lld  limit 50",_session.uid];


NSDictionary* params = [NSDictio开发者_StackOverflownary dictionaryWithObject:fql forKey:@"query"];

[[FBRequest requestWithDelegate:self] call:@"facebook.fql.query" params:params];

How will I show posted wall value in application?


Don't know Objective C and the SDK for it, but the graph url would be

https://graph.facebook.com/me/feed

You have to transmit a valid access_token. See Profile Feed-Wall

0

精彩评论

暂无评论...
验证码 换一张
取 消