最近、RayWenderlich は Facebook を iOS アプリに統合するためのチュートリアルを公開しました http://www.raywenderlich.com/44640/integrating-facebook-and-parse-tutorial-part-1
Parse SDK を使用すると、追加する必要がある App Delegate のように、アプリで Facebook ログインを非常に簡単に使用できます。
[Parse setApplicationId:@"<your_parse_app_id>" clientKey:@"<your_parse_client_key>"];
// Initialize Parse's Facebook Utilities singleton.
// This uses the FacebookAppID we specified in our App bundle's plist.
[PFFacebookUtils initializeFacebook];
return [PFFacebookUtils handleOpenURL:url];
そしてログインボタンへ
[Comms login:self];
問題は、Parse が機能するためには、Parse アカウントが必要なことです。
[PFFacebookUtils logInWithPermissions:nil block:^(PFUser *user,
NSError *error) { ... }
Q1. これほど使いやすい Facebook SDK を提供するフレームワークは他にありますか?
Q2. オンライン サービスを使用せずに Facebook のログインに ParseSDK を使用できますか?