-
Notifications
You must be signed in to change notification settings - Fork 256
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ERROR: Failed to start login flow,InnerErrorCode: 190,InnerErrorMessage: Error validating application. Invalid application ID.,InnerErrorSubcode: 0,InnerErrorTraceId: #730
Comments
I've also tested the manual login flow described on this page: https://developers.facebook.com/docs/facebook-login/guides/advanced/manual-flow I was successfully able to use the token to make a GraphQL request for my The Facebook SDK for Unity continues to give me this error: |
Like you, I suspect it is related to enterprise certification. The app under development is showing error 190. Have you resolved it? |
1 similar comment
Like you, I suspect it is related to enterprise certification. The app under development is showing error 190. Have you resolved it? |
Did you find any solution for this error? |
I resolved the issue by downgrading the Facebook SDK to version 16.0.2. but when I push to appstore get many warings: Although submission for App Store review was successful, you may want to correct the following issues in your next submission for App Store review. Once you've corrected the issues, upload a new binary to App Store Connect. ITMS-91061: Missing privacy manifest - Your app includes “Frameworks/FBAEMKit.framework/FBAEMKit”, which includes FBAEMKit, an SDK that was identified in the documentation as a privacy-impacting third-party SDK. Starting February 12, 2025, if a new app includes a privacy-impacting SDK, or an app update adds a new privacy-impacting SDK, the SDK must include a privacy manifest file. Please contact the provider of the SDK that includes this file to get an updated SDK version with a privacy manifest. For more details about this policy, including a list of SDKs that are required to include signatures and manifests, visit: https://developer.apple.com/support/third-party-SDK-requirements. ITMS-91061: Missing privacy manifest - Your app includes “Frameworks/FBSDKCoreKit.framework/FBSDKCoreKit”, which includes FBSDKCoreKit, an SDK that was identified in the documentation as a privacy-impacting third-party SDK. Starting February 12, 2025, if a new app includes a privacy-impacting SDK, or an app update adds a new privacy-impacting SDK, the SDK must include a privacy manifest file. Please contact the provider of the SDK that includes this file to get an updated SDK version with a privacy manifest. For more details about this policy, including a list of SDKs that are required to include signatures and manifests, visit: https://developer.apple.com/support/third-party-SDK-requirements. ITMS-91061: Missing privacy manifest - Your app includes “Frameworks/FBSDKCoreKit_Basics.framework/FBSDKCoreKit_Basics”, which includes FBSDKCoreKit_Basics, an SDK that was identified in the documentation as a privacy-impacting third-party SDK. Starting February 12, 2025, if a new app includes a privacy-impacting SDK, or an app update adds a new privacy-impacting SDK, the SDK must include a privacy manifest file. Please contact the provider of the SDK that includes this file to get an updated SDK version with a privacy manifest. For more details about this policy, including a list of SDKs that are required to include signatures and manifests, visit: https://developer.apple.com/support/third-party-SDK-requirements. ITMS-91061: Missing privacy manifest - Your app includes “Frameworks/FBSDKLoginKit.framework/FBSDKLoginKit”, which includes FBSDKLoginKit, an SDK that was identified in the documentation as a privacy-impacting third-party SDK. Starting February 12, 2025, if a new app includes a privacy-impacting SDK, or an app update adds a new privacy-impacting SDK, the SDK must include a privacy manifest file. Please contact the provider of the SDK that includes this file to get an updated SDK version with a privacy manifest. For more details about this policy, including a list of SDKs that are required to include signatures and manifests, visit: https://developer.apple.com/support/third-party-SDK-requirements. ITMS-91061: Missing privacy manifest - Your app includes “Frameworks/FBSDKShareKit.framework/FBSDKShareKit”, which includes FBSDKShareKit, an SDK that was identified in the documentation as a privacy-impacting third-party SDK. Starting February 12, 2025, if a new app includes a privacy-impacting SDK, or an app update adds a new privacy-impacting SDK, the SDK must include a privacy manifest file. Please contact the provider of the SDK that includes this file to get an updated SDK version with a privacy manifest. For more details about this policy, including a list of SDKs that are required to include signatures and manifests, visit: https://developer.apple.com/support/third-party-SDK-requirements. Apple Developer Relations |
Checklist
Environment
I'm using the Unity Editor on Windows using the WindowsExample.unity scene. The same error occurs within a Windows build and when I call
FB.LogInWithReadPermissions
directly. I've added the App'sApp Name
,Facebook App ID
, andClient Token
to theFacebook Settings
scriptable object inSDK\Resources\
. I've also tried with a new empty Unity project with only the Facebook SDK installed.2021.3.39f1
. I've also tried2022.3.24f
(2022 LTS).17.0.1
Windows 11 Pro (Windows, Mac, Linux)
version22631.3737
Goals
Greetings! I'm trying to use the Facebook SDK for Unity to authenticate a Facebook user with my client's established Facebook App for retrieval of user's name, profile picture, and email (for support purposes).
Expected Results
I expect the call to
FB.LogInWithReadPermissions
to return successfully, with a valid access token that I can then pass to Unity Gaming Services authentication or use to retrieve the user's info through GraphQL requests.Actual Results
The callback returns with the
ILoginResult result
error
value asERROR: Failed to start login flow,InnerErrorCode: 190,InnerErrorMessage: Error validating application. Invalid application ID.,InnerErrorSubcode: 0,InnerErrorTraceId:
. (along with an InnerErrorTraceId).Steps to Reproduce
Code Samples & Details
I suspect the issues lies with my configuration of the Facebook App on the Facebook Developer page, but all the settings appear correct to my knowledge.
(The
pages_user_timezone
was just for testing purposes)(I'm planning on addressing the iOS and Android SDK versions later)
Of particular note, this Facebook App was last updated in 2014 and the game was last released in 2014. My work for this client includes updating the game for re-release.
A few other things I've tried:
https://graph.facebook.com/oauth/access_token?client_id=APP_ID &client_secret=APP_SECRET&grant_type=client_credentials
replacing the values, I get a response that looks correct.{"access_token":"REDACTED","token_type":"bearer"}
.As I write this up, I'm noticing the Verification required notice next to the
public_profile
andemail
permissions, along with the message below. When I make the call withpublic_profile
,email
or the defaultgaming_profile
, I receive the same error. When I call it with onlypages_user_timezone
requested, I receive this errorError: Requested value 'PagesUserTimezone' was not found.
but I suspect this is a red herring.Thank you in advance for any and all help you can provide!
The text was updated successfully, but these errors were encountered: