我实现Appsflyer我的样本项目,但是当我运行它,服务器返回错误代码400AppsFlyer返回状态码400
I/AppsFlyer_1.18-117182240: response code: 400
还有就是我MainActivty.java
public class MainActivity extends AppCompatActivity {
public static final String LOG_TAG = "AppsFlyerSampleApp";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
fab.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG)
.setAction("Action", null).show();
}
});
// Set the Currency
AppsFlyerLib.setCurrencyCode("USD");
// The Dev key cab be set here or in the manifest.xml
AppsFlyerLib.setAppsFlyerKey("aaaa");
AppsFlyerLib.sendTracking(this);
AppsFlyerLib.registerConversionListener(this, new AppsFlyerConversionListener() {
public void onInstallConversionDataLoaded(Map conversionData) {
DebugLogQueue.getInstance().push("\nGot conversion data from server");
for (String attrName : conversionData.keySet()) {
Log.d(LOG_TAG, "attribute: " + attrName + " = " + conversionData.get(attrName));
}
}
public void onInstallConversionFailure(String errorMessage) {
Log.d(LOG_TAG, "error getting conversion data: " + errorMessage);
}
public void onAppOpenAttribution(Map attributionData) {
printMap(attributionData);
}
public void onAttributionFailure(String errorMessage) {
Log.d(LOG_TAG, "error onAttributionFailure : " + errorMessage);
}
private void printMap(Map map) {
for (String key : map.keySet()) {
Log.d(LOG_TAG, key + "=" + map.get(key));
}
}
});
}
和我清单文件。
package="com.example.afapplication">
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
android:name="com.appsflyer.MultipleInstallBroadcastReceiver"
android:exported="true">
我不知道为什么服务器输出错误代码400?
有没有其他人有类似的情况?
2015-10-29
Naviart
+0
你知道这是什么错误意味着什么?它说你的要求不好。所以请检查你的发送。 –
+0
谢谢Thomas R.我知道这个错误的意思。但是请求发送由Appsflyer构建的自动。 –
+0
也许你忘了设置一些数据?或者数据损坏? –