gpt4 book ai didi

android - 实现 Facebook wishlist 教程 Application Does Not Own Action Type Error

转载 作者:搜寻专家 更新时间:2023-11-01 08:12:12 26 4
gpt4 key购买 nike

我正在使用适用于 Android 的 Facebook Wishlist 应用程序。当我尝试将我的自定义对象添加到 Facebook 图形时,API 返回以下错误:

  {
"error: {
"type": "OAuthExeption",
"message":"(#100)
Application does not own
230752723668296 action type"
}
}

我无法找到关于此特定错误的任何特定文档。是否有任何 Facebook 开发人员可以帮助我解释这一点。

我还应该提一下,我已经有了这个应用程序运行时没有错误的工作示例(我正在尝试复制它,这样我就可以对其进行调整而不必担心丢失工作)。我试过更改 Action 的名称,但这没有任何区别。下面是将项目添加到 Facebook 时间线的 Android 代码 fragment 。然而,这只是整个难题的一小部分,因为这个项目有三个方面(Facebook、我的服务器和 Android)

 public void addToTimeline() {
dialog = ProgressDialog.show(Wishlist.this, "",getString(R.string.adding_to_timeline), true, true);
/*
* Create Product URL
*/
String productURL = HOST_SERVER_URL + HOST_PRODUCT_URI;
Bundle productParams = new Bundle();
productParams.putString("name", mProductName);
productParams.putString("image", mProductImageName);
productURL = productURL + "?" + Util.encodeUrl(productParams);

Bundle wishlistParams = new Bundle();

if(mPlacesAvailable) {
try {
wishlistParams.putString("place", mPlacesJSONArray.getJSONObject(mPlacesListSpinner.getSelectedItemPosition()).getString("id"));
} catch (JSONException e) {}
}
wishlistParams.putString("wishlist", WISHLIST_OBJECTS_URL[mWishlistSpinner.getSelectedItemPosition()]);
wishlistParams.putString("product", productURL);
wishlistParams.putString("image", mProductImageURL);
//TODO
//put the app's namespace and 'add_to' action here
Utility.mAsyncRunner.request("me/wishlisteight:adding_to", wishlistParams, "POST", new addToTimelineListener(), null);
}

最佳答案

我还应该提一下,我已经有了一个可以正常运行的应用程序示例(我正在尝试复制它,这样我就可以对其进行调整而不必担心丢失工作)” p>

该操作特定于应用程序 ID。当您复制代码时,您使用的是相同的应用程序 ID 还是创建了一个新的应用程序 ID?如果您创建了一个新的应用程序 ID,您将需要为新应用程序注册操作,就像您对第一个应用程序所做的那样。

关于android - 实现 Facebook wishlist 教程 Application Does Not Own Action Type Error,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8767351/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com