1

I am migrating google drive v2 to version v3.Even thought Google wrote this documentation, there are many gaps in it.

Also there is doc for same migration at stackoverflow,but this is not helping in my case.

In version v2 I was getting users installed apps like this-

AppList apps = service.apps().list().execute();
apps.getItems();

How can I get users installed apps in version v3.Suggestions would be highly appreciate.

Linda Lawton - DaImTo
  • 106,405
  • 32
  • 180
  • 449
TheCurious
  • 593
  • 1
  • 4
  • 29

1 Answers1

1

A number of methods are not available in v3 If you check Migrate to Google Drive API v3

You will notice there is no new method for these calls

apps.get n/a
apps.list n/a

Answer: There is no method for getting a list of users installed application in google Drive v3

Linda Lawton - DaImTo
  • 106,405
  • 32
  • 180
  • 449
  • Is there any alternative for it?Why google stoped such feature?How can alreaddy running apps will suport these feature in case of migration.Is there any work around for the same,anyhow. – TheCurious Dec 05 '17 at 10:56
  • I know of no alternative. I cant tell you why Google would do something sorry. When they deprecate v2 you will probably have a year before your application stops working. My advice would be to post it as a feature request asking them to consider adding the method to the new API https://issuetracker.google.com/issues?q=componentid:191650%2B – Linda Lawton - DaImTo Dec 05 '17 at 11:10