如何使用php从REST API解码返回的函数

时间:2018-02-06 20:45:52

标签: php function rest api

我正在向rest api发出请求并将结果保存在$ result中。如果我用print_r打印结果我得到这个输出

(function() { return {"access_tokens":[{"token":"12345","sent_to_email":"example@mail.com","first_use_date":null},{"token":"12435","sent_to_email":"example@newmail.com","first_use_date":null}]}; });

然后,API文档中的示例使用$ result-> access-tokens

然后我收到错误“试图获取非对象的属性”

REST答案有问题吗?或者如何编码“功能”以访问结果?

为了更好地理解: API https://dev.clickmeeting.com/api-doc/ 我正在使用“Get Access tokens”。它只与“获得会议”合作

1 个答案:

答案 0 :(得分:0)

我发现了我的错误:格式设置错误,导致输出错误。

感谢您的回答@rtfm @barmar