我得到" 500 internal server error
"在我的Foursquare应用程序上。
在服务器端,错误日志文件上存在超时错误:
PHP警告: file_get_contents(https://api.foursquare.com/v2/users/self?oauth_token=XXXXXXX& a m p; v = 20161129):无法打开流:连接超时
太奇怪了#34; &安培;转换像& a m p; "在file_get_contents
中 顺便说一句,本地没问题。有什么问题?代码,我的主持人或Foursquare的Block? 谢谢。答案 0 :(得分:0)
很可能您的服务器无法连接到外部资源,例如,因为firewall restrictions
。
尝试使用cURL
,它提供了比file_get_contents更多的选项和控制
或者可能是执行问题。在文件获取内容之前尝试ini_set('max_execution_time', 300);
...