通过Facebook SDK向分析发送事件的问题

时间:2019-05-24 07:05:23

标签: android facebook facebook-analytics

我使用com.facebook.android:facebook-core:5.0.0 当我尝试将事件发送到这样的分析

val logger = AppEventsLogger.newLogger(context, "my_app_id")  
logger.logEvent("event", Bundle())

但是我的日志中有错误

    E/GraphResponse: {HttpStatus: 404, errorCode: 803, subErrorCode: -1,  
 errorType: OAuthException, errorMessage: (#803) Some of the aliases you  
 requested do not exist: "my_app_id"}

应用程序的设置类似于https://developers.facebook.com/quickstarts/?platform=android

Facebook的支持没有回答

1 个答案:

答案 0 :(得分:0)

我修正了两点:

1:在manifest中添加两个活动。

<activity android:name="com.facebook.FacebookActivity"
          android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation"
          android:label="@string/app_name"/>

<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>  

2:用

替换app / build.gradle中的manifestPlaceholders
resValue "string", "facebook_app_id", "$fbAppId"  
resValue "string", "fb_login_protocol_scheme", "fb$fbAppId"

我不知道为什么manifestPlaceholders不起作用。