我正在尝试与phone-gap
处理Facebook连接。我从Facebook收到此错误:given url is not allowed by the application configuration
。
我在stack-overflow
上尝试了一些解决方案,但我无法让它发挥作用。
我的应用程序包含一个处理Facebook login
的插件。
我已经在Facebook Dashboard中添加了一个Android应用程序:
深层链接:KO
(1)在我的AndroidManifest.xml中找到:package =“com.example.app”
这是我的AndroidManifest.xml:
<?xml version='1.0' encoding='utf-8'?>
<manifest android:hardwareAccelerated="true" android:versionCode="1" android:versionName="1.0.0" android:windowSoftInputMode="adjustPan" package="com.example.app" xmlns:android="http://schemas.android.com/apk/res/android">
<supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:resizeable="true" android:smallScreens="true" android:xlargeScreens="true" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<application android:hardwareAccelerated="true" android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale" android:label="@string/app_name" android:name="Phonegap" android:theme="@android:style/Theme.Black.NoTitleBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="19" />
</manifest>
我使用正确的套餐名称和类名称,还是需要使用插件的ID(来自plugin.xml)我用来处理Facebook登录?
感谢您的帮助!