无法拉起分享 "code":30000,"msg":"fail:API_ERROR: API_ERROR"
1.确认facebook的app_id是否一致
2.确认是否在app_id应用的白名单里,注册meta开发者,然后把主页的user_id给管理员加
A ContentProvider for this app was not set up in the AndroidManifest.xml, please add com.facebook.app.FacebookContentProvider xxxxxxxxxxxx
-
- <meta-data
- android:name="com.facebook.sdk.ApplicationId"
- android:value="@string/facebook_app_id" />
- <meta-data
- android:name="com.facebook.sdk.ClientToken"
- android:value="@string/facebook_client_token" />
-
- <activity
- android:name="com.facebook.CustomTabActivity"
- android:exported="true">
- <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:scheme="@string/fb_login_protocol_scheme" />
- intent-filter>
- activity>
-
-
-
- <activity
- android:name="com.facebook.FacebookActivity"
- android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation"
- android:label="@string/app_name" />
-
- <provider
- android:name="com.facebook.FacebookContentProvider"
- android:authorities="com.facebook.app.FacebookContentProvider${applicationId}"
- android:exported="true" />
-
-
-