I want to know is it possible to read/write google spreadsheets using GET/POST methods with UIWebView?
I want to know is it possible to read/write google spreadsheets using GET/POST methods
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There are two Google API’s that might interest you:
Unless you actually want to display a web page, I would advice against using UIWebView. HTTP requests against API’s are usually made using NSURLRequest and NSURLConnection. They give you complete control over the request and response handling.
While a custom implementation written yourself against the documents/spreadsheets API could suffice, most Google API’s are an implementation of the Google Data protocol. This protocol has multiple libraries available that take care of the actual implementation on top of NSURLRequest.
A client library and sample code is available to access the spreadsheets API using Objective-C.