gpt4 book ai didi

java - 如何在 Android 上使用 gigya 在 Twitter 上共享媒体文件

转载 作者:行者123 更新时间:2023-12-01 12:33:59 27 4
gpt4 key购买 nike

我在 Twitter 上使用 Gigya 共享媒体文件时遇到问题。请看下面的代码 fragment 。它给出的错误代码为 0,但在帖子中,仅发布文本。

private void share(){
GSObject userAction = new GSObject();
userAction.put("title", "Text");

GSArray mediaItems = new GSArray();
try {
mediaItems.add(new GSObject("{\"src\":\"http://www.f2h.co.il/logo.jpg\", \"href\":\"http://www.f2h.co.il\",\"type\":\"image\"}"));
userAction.put("mediaItems", mediaItems);
} catch (Exception e) {
e.printStackTrace();
}
GSObject params = new GSObject();
params.put("userAction", userAction);
params.put("enabledProviders", "twitter");
GSAPI.getInstance().sendRequest("socialize.publishUserAction", params, new GSResponseListener() {
@Override
public void onGSResponse(String method, GSResponse response, Object context) {

if (response.getErrorCode() == 0) {
Log.d( "Twitter Auth Token","Session token Response Error ");
} else {
Log.d( "Twitter Auth Token","Session token Response Error "+response);
}
}
}, null);
}

最佳答案

Gigya 不支持在推文中上传和共享图像。推荐的方法是在推文本身中包含指向图像的链接。

希望这有帮助

关于java - 如何在 Android 上使用 gigya 在 Twitter 上共享媒体文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25711172/

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