我认为应用程序需要将应用程序ID提交给Facebook服务器以通过OAuth,获得用户的许可,然后获取活动会话以读取/发布信息。
我正在寻找类似的东西:
Facebook fb = new Facebook("YOUR_APP_ID");
我检查了“Facebook iOS SDK”教程和项目“HelloFacebookSample”,但没有找到任何代码来设置我的App ID。如何设置我的App ID和App Secret?如何使“HelloFacebookSample”使用我的应用程序,而不是使用官方示例应用程序? 我正在使用Xcode。感谢。
答案 0 :(得分:1)
您应该在最后一个</dict>
元素之前的 Info.plist 中设置它
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLSchemes</key>
<array>
<string>fbxxxxxxxxxxxxxxx</string>
</array>
</dict>
</array>
<key>CFBundleVersion</key>
<string>2.8</string>
<key>FacebookAppID</key>
<string>xxxxxxxxxxxxxxx</string>
<key>FacebookDisplayName</key>
<string>{{Your app name}}</string>