This link
http://ajaxcontroltoolkit.codeplex.com/releases/view/11121#DownloadId=28808
shows a popup on which one has to agree before being able to download.
So how to automate this with PHP curl ? Any existing similar sample code ?
This link
http://ajaxcontroltoolkit.codeplex.com/releases/view/11121#DownloadId=28808
shows a popup on which one has to agree before being able to download.
So how to automate this with PHP curl ? Any existing similar sample code ?
If you take a look at what's happening when you click on the "I agree" button with a tool like Live HTTP Headers, you'll see that :
http://ajaxcontroltoolkit.codeplex.com/releases/acceptLicense
302
response,
Location
HTTP header that points to http://download.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=AjaxControlToolkit&DownloadId=28807&FileTime=128487916929600000&Build=16331
(see there for the HTTP headers of that exchange)
It doesn't seem to be any other kind of control/security...
So, downloading from that URL with curl should work, I'd say.