FirebaseAuth我目前得到這個錯誤:無法使用FirebaseAuth時登陸iOS上
域= com.apple.accounts代碼= 7「Facebook的服務器無法滿足這個訪問請求:remote_app_id不匹配存儲ID」 UserInfo = 0x1f5cff20 {NSLocalizedDescription = Facebook服務器無法完成訪問請求:remote_app_id與存儲的id不匹配}
我再次檢查以確保我的bundleid與Facebook中的配置完全匹配(即使匹配)。所以這不是關於bundleid的facebook應用程序設置問題。
我也嘗試刪除Facebook應用程序/在iOS中退出FB並重新登錄。但是這不會改變結果。
這些是我使用的API: Firebase.framework-1.0.0.zip FirebaseAuthClient.framework-1.0.0.zip
讓我知道如果有什麼事,我一定要試試。謝謝!
[self.authClient loginToFacebookAppWithId:@"12345" permissions:@[@"email"]
withCompletionBlock:^(NSError *error, FAUser *user) {
if (error != nil) {
// There was an error logging in
NSLog(@"There was an error logging in: code = %d", [error code]);
NSLog(@"%@", error);
} else {
// We have a logged in facebook user
NSLog(@"We have a logged in facebook user");
}
}];
您是否可以仔細檢查您是否啓用了Facebook身份驗證並在Forge中設置了您的應用ID和密碼(登錄到您的Firebase帳戶,點擊您的Firebase,然後單擊身份驗證)?如果這一切看起來正確,你能否給我發電子郵件(greg at firebase dot com)Firebase的名稱和你的捆綁ID,我會看看? – 2013-03-21 16:18:13
是啊appid /祕密已經在我的firebase。感謝您檢查。 – pctj101 2013-03-22 21:43:51