我正在尝试将salesforce与我的项目集成。在访问URL时
“ / chatter / feeds / files / me”,我收到错误消息“ API_DISABLED_FOR_ORG:未为此组织或用户启用文件API”。

RestResponse getResponse=restClient.sendSync(RestMethod.GET, "/services/data/v23.0/chatter/feeds/files/me, null);
System.out.prinln(getResponse.toString()); // here i am getting the response as "API_DISABLED_FOR_ORG:files API is not enabled for this Organization or user".. "


请帮忙.........

最佳答案

在restclient URL中,尝试使用v24.0,这是最新的salesforce API版本。

关于salesforce - 如何在Salesforce集成项目中启用文件api?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9802779/

10-14 07:04