2017-07-29 67 views

回答

2

本地配置

Auth0将需要处理托管的登录认证的回调。

的Android

在文件的Android /应用/ src目录/主/ AndroidManifest.xml中,你必须确保应用程序的主要活动有singleTask的launchMode价值,它有以下意图过滤器。

<activity 
    android:name=".MainActivity" 
    android:label="@string/app_name" 
    android:launchMode="singleTask" 
    android:configChanges="keyboard|keyboardHidden|orientation|screenSize" 
    android:windowSoftInputMode="adjustResize"> 
    <intent-filter> 
     <action android:name="android.intent.action.MAIN" /> 
     <category android:name="android.intent.category.LAUNCHER" /> 
    </intent-filter> 
    <intent-filter> 
    <action android:name="android.intent.action.VIEW" /> 
    <category android:name="android.intent.category.DEFAULT" /> 
    <category android:name="android.intent.category.BROWSABLE" /> 
     <data 
     android:host="yakupad.eu.auth0.com" 
     android:pathPrefix="/android/${applicationId}/callback" 
     android:scheme="${applicationId}" /> 
    </intent-filter> 
    </activity> 

的iOS

在文件IOS // AppDelegate.m添加以下内容:

#import <React/RCTLinkingManager.h> 

    - (BOOL)application:(UIApplication *)application openURL:(NSURL *)url 
    sourceApplication:(NSString *)sourceApplication annotation: (id)annotation 
    { 
     return [RCTLinkingManager application:application openURL:url 
         sourceApplication:sourceApplication  annotation:annotation]; 
    } 

接下来,您需要使用您的应用程序的包标识添加URLScheme。

检查info.plist中是否存在包标识符,例如

<key>CFBundleURLTypes</key> 
<array> 
    <dict> 
     <key>CFBundleTypeRole</key> 
     <string>None</string> 
     <key>CFBundleURLName</key> 
     <string>auth0</string> 
     <key>CFBundleURLSchemes</key> 
     <array> 
     <string>org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier). </string> 
    </array> 
</dict> 

<key>CFBundleIdentifier</key> 
<string>org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier). </string> 

然后,可以通过将下面的代码段寄存器标识符

相关问题