当使用google contacts api示例simple.php和Google API PHP Client from GitHub版本1.0.4-beta中描述的时,我得到以下错误:Fatal error: Call to undefined method Google_IO_Curl::authenticatedRequest()然而,当我改变这条线…$val = $client_svc_contacts->getIo()->authenticatedRequest($req);……$val = $client_svc_contacts->getAuth()->authenticatedRequest($req);…然后它又开始工作了。我使用的是未经修改的1.0.4-beta版本,除了在client.php顶部添加以下行:set_include_path(str_replace('/Google','',dirname(__FILE__)));我认识到,简单的PHP是为版本0.6而不是V1+编写的,但与GITHUB上的版本相比,该示例只是过时了吗?或者我的实现有什么问题吗? 最佳答案 找到了答案…用于authenticatedrequest的新家authenticatedrequest方法已从IO类移动到auth类。因此,用代替getIo()是正确的作法。关于php - 致命错误:调用未定义的方法Google_IO_Curl::authenticatedRequest(),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22583538/
10-10 02:11