Atif Zia
Atif Zia

Reputation: 793

Angular integrate google drive

I want to integrate Google drive API in Angular 2+ application. Can anyone has solution for to integrate it properly. I need help for integration.

Upvotes: 3

Views: 9507

Answers (1)

Kevin McCann
Kevin McCann

Reputation: 551

First you need Google Drive API credentials, which you can set up here.

Then you need a Google Drive client: here

From there the rest is application logic, and will depend on what exactly you are trying to do. You'll need to initialize the Client, with the API key you've created in Step 1, before you can actually interact with the API.

Here's a long tutorial discussing exactly this

Upvotes: 4

Related Questions