HomeiOS Developmentios - GIGYA error: cannot login with WebView, set up associated sdk

ios – GIGYA error:[facebook] cannot login with WebView, set up associated sdk


I began to utilizing the brand new GigyaSwift SDK and I am attempting to implement fb social login.
So I’ve imported the SDK and wrappers in my undertaking, and put in the FBSDK pods.
Nevertheless I acquired following error.

Deadly error: [facebook] cannot login with WebView, set up associated sdk.

I can login with telephone quantity or e mail account.
I get an identical error message with my Google social login.

Deadly error: [googleplus] cannot login with WebView, set up associated sdk.

These are the fields I’ve inputted into my plist.

<key>CFBundleURLTypes</key>
<array>
    <dict>
        <key>CFBundleTypeRole</key>
        <string>Editor</string>
        <key>CFBundleURLName</key>
        <string>MyApp</string>
        <key>CFBundleURLSchemes</key>
        <array>
            <string>REDACTED</string>
        </array>
    </dict>
    <dict>
        <key>CFBundleTypeRole</key>
        <string>Editor</string>
        <key>CFBundleURLName</key>
        <string>MyApp</string>
        <key>CFBundleURLSchemes</key>
        <array>
            <string>REDACTED</string>
        </array>
    </dict>
</array>
<key>FacebookAppID</key>
<string>REDACTED</string>
<key>FacebookClientToken</key>
<string>REDACTED</string>
<key>FacebookDisplayName</key>
<string>MyApp ID Login</string>
<key>GoogleClientID</key>
<string>REDACTED</string>
<key>GoogleServerClientID</key>
<string>REDACTED</string>

And that is my podfile

  pod 'AppAuth', '= 1.5.0', :modular_headers => false
  pod 'GoogleSignIn', '= 6.2.3', :modular_headers => false
  pod 'GTMSessionFetcher', '= 1.7.2', :modular_headers => false
  pod 'FBSDKCoreKit', '= 14.1.0', :modular_headers => false
  pod 'FBSDKLoginKit', '= 14.1.0', :modular_headers => false
  pod 'Gigya', '= 1.3.2', :modular_headers => false
  # Take away signing on Xcode 14
  post_install do |installer|
      installer.generated_projects.every do |goal|
          goal.build_configurations.every do |config|
            config.build_settings['CODE_SIGNING_ALLOWED'] = "NO"
            config.build_settings['CODE_SIGNING_REQUIRED'] = "NO"
            config.build_settings['EXPANDED_CODE_SIGN_IDENTITY'] = ""
          finish
        finish
    finish
finish

I am implementing a .Internet MAUI software and I’ve created a binding library for GIGYA to incorporate in my software.
If anybody is aware of how you can clear up this, please let me know.

I checked the appliance identify talked about within the data.plist and made certain there are not any areas within the identify.

RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments