msgraph-sdk-ruby
msgraph-sdk-ruby copied to clipboard
Microsoft Graph Ruby client library for v1 APIs
token = get_access_token email = session[:user_email] if token # If a token is present in the session, get contacts callback = Proc.new do |r| r.headers['Authorization'] = "Bearer #{token}" r.headers['X-AnchorMailbox'] =...
I am able to get, post, for calendar and emails with MicrosoftGraph api, but the api does not return a JSON response object. Here is the code I am using...
Hey, I'd like to convert `get 'https://graph.microsoft.com/v1.0/me/drive/sharedWithMe'` using this gem. It doesn't look like it has been implemented, am I wrong ?
Hi, I'm interested in using the Sharepoint API, do you have any plans to update this gem to support the full API?
This pull request was automatically created by Azure Pipelines. **Important** Check for unexpected deletions or changes in this PR.
This pull request was automatically created by Azure Pipelines. **Important** Check for unexpected deletions or changes in this PR.
This pull request was automatically created by Azure Pipelines. **Important** Check for unexpected deletions or changes in this PR.
Hi, I'm trying to create a new group, I initialize a GraphServiceClient just like in the README ```ruby context = MicrosoftKiotaAuthenticationOAuth::ClientCredentialContext.new( TENANT_ID, CLIENT_ID, CLIENT_SECRET ) authentication_provider = MicrosoftGraphCore::Authentication::OAuthAuthenticationProvider.new( context, nil,...
Hello, I'm currently trying out the latest Microsoft Graph Ruby SDK and need a few pointers on how to approach my use case. I'm planning to access Microsoft Graph API...