apple-sign-in

Authorization failed: Error Domain=AKAuthenticationError Code=-7026 “(null)” UserInfo={AKClientBundleID=my bundile id}

北城以北 提交于 2020-08-27 07:15:57
问题 Authorization failed: Error Domain=AKAuthenticationError Code=-7026 "(null)" UserInfo={AKClientBundleID=my bundile id} I have the same issue. I enabled the sign in with apple capability both developer console as well in Xcode, but the error still remains. 回答1: I had the same issue just now after I changed by bundle id and developer account. All the settings were correct in my developer account and on Xcode. This fixed it for me: Go to the settings app Tap your name at the top Password &

Sign in with Apple - Button customization

别等时光非礼了梦想. 提交于 2020-08-10 19:27:43
问题 I have the custom policies working correctly with Apple Sign In but once I submitted to Apple for review they rejected my app because the button doesn't use the proper design/branding. Is there a way to customize the "Sign in with Apple" button with a logo and colors? From apple: Your app uses Sign in with Apple as a login option but does not use Sign in with Apple button design, branding and/or user interface elements appropriately as described in the Sign in With Apple Human Interface

Sign in with Apple - Button customization

你说的曾经没有我的故事 提交于 2020-08-10 19:27:16
问题 I have the custom policies working correctly with Apple Sign In but once I submitted to Apple for review they rejected my app because the button doesn't use the proper design/branding. Is there a way to customize the "Sign in with Apple" button with a logo and colors? From apple: Your app uses Sign in with Apple as a login option but does not use Sign in with Apple button design, branding and/or user interface elements appropriately as described in the Sign in With Apple Human Interface

Is Sign in with Apple (SIWA) supported in the tvOS simulator?

喜夏-厌秋 提交于 2020-07-23 04:58:08
问题 I have enabled the entitlements for SIWA in the project target. And the same steps are working fine in the iOS simulator. I am facing the following issue while trying to Sign in with Apple (SIWA) on the tvOS simulator. Steps to reproduce the issue: Upon requesting for SIWA on custom button tap, a full-screen layover displayed for the password of apple id (No option for choosing email relay was given) (screenshot attached in the last for reference) Upon entering the correct password I get the

Is Sign in with Apple (SIWA) supported in the tvOS simulator?

青春壹個敷衍的年華 提交于 2020-07-23 04:57:05
问题 I have enabled the entitlements for SIWA in the project target. And the same steps are working fine in the iOS simulator. I am facing the following issue while trying to Sign in with Apple (SIWA) on the tvOS simulator. Steps to reproduce the issue: Upon requesting for SIWA on custom button tap, a full-screen layover displayed for the password of apple id (No option for choosing email relay was given) (screenshot attached in the last for reference) Upon entering the correct password I get the

Is Sign in with Apple (SIWA) supported in the tvOS simulator?

一曲冷凌霜 提交于 2020-07-23 04:56:42
问题 I have enabled the entitlements for SIWA in the project target. And the same steps are working fine in the iOS simulator. I am facing the following issue while trying to Sign in with Apple (SIWA) on the tvOS simulator. Steps to reproduce the issue: Upon requesting for SIWA on custom button tap, a full-screen layover displayed for the password of apple id (No option for choosing email relay was given) (screenshot attached in the last for reference) Upon entering the correct password I get the

Sign In with apple in Swift5

旧街凉风 提交于 2020-07-09 11:45:43
问题 I had implement Sign In with the apple button. It's functionality working. But the issue is its title looks like " SIGN_IN_WITH_APPLE " instead of " Sign in with Apple ". here is my code. let authorizationButton = ASAuthorizationAppleIDButton() authorizationButton.cornerRadius = 10 authorizationButton.addTarget(self, action: #selector(handleLogInWithAppleIDButtonPress), for: .touchUpInside) cell.signInStack.addArrangedSubview(authorizationButton) And How it's look 回答1: I tried let button =

How to integrate 'Sign in with Apple' flow in iOS Objective-C?

痴心易碎 提交于 2020-06-25 02:31:10
问题 I want to integrate 'Sign in with Apple' in my iOS app. I have found many code examples for this but all are in Swift and I need Objective-C. 回答1: Step -1 : for reference purpose I taken the information from here iOS 13 — Sign In with Apple Tutorial and here for full code you can download from github-Sign-In-with-Apple Adding Sign In With Apple Capability Under the Xcode project file, there is Signing & Capabilities available. Press on the + and add the “Sign In with Apple” capability. Step