msgraph-sdk-ruby icon indicating copy to clipboard operation
msgraph-sdk-ruby copied to clipboard

`Base64url` not found

Open AlessioC31 opened this issue 1 year ago • 1 comments

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:

image

Am I missing a dependency? Thanks!

AlessioC31 avatar May 09 '23 09:05 AlessioC31

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.

baywet avatar May 16 '23 13:05 baywet