Home > Blockchain >  Can you receive user info via Azure go sdk?
Can you receive user info via Azure go sdk?

Time:02-24

I need to work with Azure services, so I use github.com/Azure/azure-sdk-for-go but also want to get a user email. Do I have to use the graph SDK (github.com/microsoftgraph/msgraph-sdk-go) for this?

My app allows authentication of both multi-tenant AD users and personal accounts.

CodePudding user response:

Do I have to use the graph SDK (github.com/microsoftgraph/msgraph-sdk-go) for this?

Yes, you would need to use msgraph-sdk-go SDK to interact with Graph API. You can find more information about using the SDK here: https://docs.microsoft.com/en-gb/graph/sdks/sdks-overview.

  • Related