POST function for google

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Person
    New Member
    • Jun 2007
    • 66

    POST function for google

    In order to access google spreadsheets they tell me that I must use a POST function in javascript which returns a String Auth. What does POST look like, where does it go, and how does one access the returned value of Auth once it the user's information has been sent?
  • acoder
    Recognized Expert MVP
    • Nov 2006
    • 16032

    #2
    Welcome to TSDN!

    I don't know much about Google spreadsheets, but I can tell you the difference between GET and POST.

    Using the GET method, the form data is encoded in the URL, while using POST it is encoded in the message body (and so safer). When changes need to be made, you should use the POST method.

    Comment

    Working...