This is a 3 steps process:
- Get the auth code from google (using ClientLogin)
- Get the cookie from google using the auth code
- Access the service that we want in google app
- Application name is: MyFirstApp
- Application url is: http://MyFirstApp.com
- Our application service name is: getAllData
- Application admin is: admin@gmail.com
- Application admin password is: adminadmin
Getting auth key:
curl -f -s --output myAuthFile.txt -d Email=admin@gmail.com -d Passwd=adminadmin -d accountType=GOOGLE -d service=ah -d source=MyFirstApp https://www.google.com/accounts/ClientLoginafter the command completes we will have a file named: myAuthFile.txt with 3 lines, the line that starts with "Auth=" is the auth code line, we will use this code in the next step.
Step 2:
Getting application cookie:
curl -c cookiefile "http://MyFirstApp.com/_ah/login?auth=`cat myAuthFile.txt | grep ^Auth= | cut -d= -f2`" > /dev/nullafter the command completes we will have a file named: cookiefile that will include our cookie, we will use the cookie in the next step.
Step 3:
Calling our application service, getAllData:
curl -f -s -H "Cookie: ACSID=`cat cookiefile | grep -v ^# | grep -v ^$|cut -f7`" http://MyFirstApp.com/getAllData
That's all!
Hope it will help anyone.
3 comments:
Thanks Oded! Yes, helped a lot! Thanks a lot for posting this. Cheers Josh
Thank you very much....
Huge help! Thanks a ton!
Post a Comment