Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
2010年6月にFacebookAPIを多用したiPhoneアプリケーションの開発を始めました。FBSessionログインして、ログインしたユーザーのプロファイルIDなどを含むを取得しました。次に、クラスを使用して、 FQLを使用してデータを取得するFBRequestために多くの呼び出しを行いました。
FBSession
FBRequest
最新のFacebookConnectAPIからFQLクエリを呼び出すにはどうすればよいですか?
NSMutableDictionary * params = [NSMutableDictionary dictionaryWithObjectsAndKeys: @"SELECT uid,name FROM user WHERE uid=4", @"query", nil]; [_facebook requestWithMethodName: @"fql.query" andParams: params andHttpMethod: @"POST" andDelegate: self];