我正在尝试将 Pinterest 集成到我的 android 应用程序并使用图像固定/共享消息。但我没有任何方法可以做到这一点。我下载了 Pinterest SDK 并将 jar 文件添加到我的项目中。
以下是我的代码片段。
PinIt pinIt = new PinIt();
PinIt.setPartnerId("My ID");
pinIt.setUrl("http://placekitten.com/400/300");
pinIt.setImageUrl(m_cObjSocialTable.getPinterestImagePath());
pinIt.setDescription(pMessage);
pinIt.setListener(new PinItListener() {
@Override
public void onStart() {
super.onStart();
}
@Override
public void onComplete(boolean completed) {
super.onComplete(completed);
if (completed) {
System.out.println("Pinit complete");
}
}
@Override
public void onException(Exception e) {
super.onException(e);
System.out.println("Pinit Exception");
}
});
pinIt.doPinIt(this);
但它没有发布,在 onComplete() 中我们得到了错误。请帮帮我
感谢和问候蒂鲁