gpt4 book ai didi

android - {"error": {"message" :"(#100) Missing message or attachment" ,"type" :"OAuthException" ,"code":100}}

转载 作者:搜寻专家 更新时间:2023-11-01 09:00:28 27 4
gpt4 key购买 nike

这是我的代码

    private void postToWall(String msg) {
Bundle parameters = new Bundle();

JSONObject attachment = new JSONObject();

String myjosn="{\"name\":\"LangGuage\",\"href\":\"http://www.hunkatech.com\",\"caption\":\" \",\"description\":\""+messageToPost+"\",\"media\":[{\"type\":\"image\",\"src\":\"http://hwsdemos.com/LangGuage/medal_1.png\",\"href\":\"http://www.hunkatech.com\"}],\"properties\":{\"Powered by:\":{\"text\":\"Hunka Technology Pvt. Ltd.\",\"href\":\"http://www.hunkatech.com\"}}}";

try {



parameters.putString(Facebook.TOKEN, facebook.getAccessToken());

parameters.putString("attachment",myjosn.toString());


String response = facebook.request("me/feed", parameters, "POST");

System.out.println("----responce" + response);

if (response.contains("Duplicate status message")) {
progressHandler.sendEmptyMessage(1);
resp = 1;

} else if (response == null || response.equals("")
|| response.equals("false") || response.contains("error")) {
Log.d("error", "error response");
} else {
progressHandler.sendEmptyMessage(0);
resp = 0;

}

} catch (Exception e) {
Log.e(TAG, "Posting fail");

e.printStackTrace();

}

}

我想在 Facebook 墙上发布带图片的消息。我的 json 是正确的,我已经在 json 格式化程序编辑器上检查过了。我遇到了以下异常。需要建议如何解决它。

更新:我的消息和图片是在以下代码的帮助下发布的:

parameters.putString("link", "http://www.hunkatech.com");
parameters.putString("picture", "http://hwsdemos.com/LangGuage/medal_1.png");
parameters.putString("name", "LangGuage");// name of link
parameters.putString("captions", "hello");
parameters.putString("message", "This is my message!!");

但我想将图像留给文本,但上面的代码给出的结果是消息下方的 Imgae。更新:我无法发布任何形式的 json。任何人都可以解决这个问题我想发送绑定(bind)图像和 json 按摩的附件。

最佳答案

你可以试试另外加上这个参数:

parameters.putString("message", "this is my message");

编辑:

你可以试试:

parameters.putString("link", "http://www.hunkatech.com");
parameters.putString("picture", "http://hwsdemos.com/LangGuage/medal_1.png");
parameters.putString("name", "LangGuage");// name of link
parameters.putString("captions", "hello");
parameters.putString("message", "This is my message!!");

关于android - {"error": {"message" :"(#100) Missing message or attachment" ,"type" :"OAuthException" ,"code":100}},我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15445983/

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