尝试过在Podio开发网站上列出的API调用来上传文件,但我并没有那么高兴。
我正在尝试使用POST操作在第一个实例中“上传文件”,并将带有源URL的json传递给指定的端点。
我可以使用其他方法就好但是由于路上很少或有错误反馈我卡住了我一直得到错误404
我用过 - https://developers.podio.com/doc/files/upload-file-1004361
(尝试了GET和POST) image of method with error i get
答案 0 :(得分:0)
您尝试使用的上传文件方法(https://developers.podio.com/doc/files/upload-file-1004361)期望文件路径应该是本地文件而不是网址。
以下是如何使用它的示例: http://podio.github.io/podio-php/api-requests/
$file = PodioFile::upload($path_to_file, $filename_to_display);
print 'File uploaded. The file id is: '.$file->id;
以下是另一个如何处理文件的示例: https://developers.podio.com/examples/files