Using the Google Cloud in the iPhone App

In my application, I want to allow the user to back up data in Google Docs. All my data has been saved in sqlite file. How can I back up this data?

I looked at the Google APIs page on mobile phones and I was not able to figure out how to connect to google docs. Any help is appreciated.

+4
source share
2 answers

I converted the sql file to a pdf file (supported by the Doc file format) for storage in a Google document. For recovery, I downloaded the same file and converted it to sql. I used the Google APIs and followed the steps described in this blog.

Thank you for your help.

0
source

There are two ways to do this: we use a soapy web service (Passing XML), and the other - a leisure service (Passing URL) to access the APi. First, click the login API using your google account. use XML later or do the rest of the work.

0
source

Source: https://habr.com/ru/post/1339599/


All Articles