msgraph-sdk-ruby
msgraph-sdk-ruby copied to clipboard
`Base64url` not found
Hello,
I'm trying to use this sdk to get the emails from a mailbox.
I execute this code to get the mails: result = client.users_by_id("<mail>").messages.get.resume
But I get these errors:
Am I missing a dependency? Thanks!
Hi @AlessioC31 Thanks for reaching out and for using the Ruby SDK. We're still at an early preview stage for this language, expect to run into issues like these for the time being. This is caused because the serialization of byte array properties is not yet implemented in the generator for ruby And message contains a byte array property
The best workaround at this point until we implement that serialization is to select only the properties you care about with a select query parameter.