无论如何用curl php做到这一点?
import mechanize
br=mechanize.Browser()
br.open('https://www.google.com/calendar/exporticalzip')
br.select_form(nr=0)
br['Email']='Username@gmail.com'
br['Passwd']='Password'
br.submit()
br.retrieve('https://www.google.com/calendar/exporticalzip','exportical.zip')
答案 0 :(得分:0)
阅读Using cURL to interact with Google Data services。
请参阅PHP Curl with Google Calendar和Class: Google Calendar Wrapper。
答案 1 :(得分:0)
有一个优秀的PHP类可以模拟Web浏览器,就像curl称为Snoopy一样。
它允许许多额外的功能,例如从提取的页面中提取链接并提取在您的情况下可能非常有用的表单元素。