如何使用Google App Engine上的URL Fetch PHP API获取final_url?

时间:2014-07-01 09:39:36

标签: php python google-app-engine

与Python URL Fetch API一样,没有任何方法可以在Google App Engine上获取PHP中的final_url。以下是Python中访问它的方式:

>>> from google.appengine.api import urlfetch
>>> urlfetch.fetch('http://google.com/').final_url
'http://www.google.com/'

1 个答案:

答案 0 :(得分:0)

不幸的是,除了禁用follow_location并手动解析$ http_response_header(参见How to get the real URL after file_get_contents if redirection happens?)之外,目前无法直接获取final_url。