在我的應用程序中,我想從Facebook拍照。所以我用facebook ios sdk。我可以從以下代碼授權:facebook登錄在iphone模擬器上工作,但不在iphone設備上
if (appDelegate.session.isOpen) {
//[appDelegate.session closeAndClearTokenInformation];
[self retrieveAlbums];
} else {
if (appDelegate.session.state != FBSessionStateCreated) {
// Create a new, logged out session.
appDelegate.session = [[FBSession alloc] init];
}
// if the session isn't open, let's open it now and present the login UX to the user
[appDelegate.session openWithCompletionHandler:^(FBSession *session,
FBSessionState status,
NSError *error) {
// and here we make sure to update our UX according to the new session state
//NSLog(@"%@",session.accessTokenData.accessToken);
[self retrieveAlbums];
}];
它在iPhone模擬器上正常工作。但我無法登錄我的iPhone 4設備。 當我試圖登錄時,它會打開一個safari,然後顯示消息更新。 然後它會在未經授權的情況下重定向。訪問令牌檢索爲零。所以我無法檢索圖像。
請幫幫我。
編輯
感謝大家。最後我解決我的問題。這是因爲我在Facebook開發人員帳戶設置中啓用了沙盒模式。當我禁用沙箱模式時,它正常工作。
什麼是iPhone4的 – 2013-05-02 12:21:15
IOS版本iOS版本6.1.2是嘿 – manujmv 2013-05-02 12:25:11
@manujmv,我有類似的問題。禁用沙箱模式並不意味着這個問題就解決了,因爲我們遲早會啓用它。 – 2014-06-10 11:13:11