Jesse Veentjer

Results 10 comments of Jesse Veentjer

Hey @Trenly , thank you for responding. I'm using Version 1.1.2.0 installed via winget (how else! 👍 ) ![image](https://user-images.githubusercontent.com/32770874/193839172-61640d84-47b6-4a16-ab1b-76526cf75c8e.png) After uninstalling / re-installing I get the same error (nb. before...

> Hey @WardenHub, > > The thrown IO exception is coming from [`System.Console.CursorVisible = true`](https://github.com/shibayan/Sharprompt/blob/2c5fcff2b81b9ac7a2769de4e501c4d0045acf89/Sharprompt/Drivers/DefaultConsoleDriver.cs#L61) which should rarely happen unless there is something corrupted with your console. I'm not sure...

> For those potentially reading this, a network share to a yaml manifest works (just tested this). I found this while looking into setting up a rest api / using...

this is critical; functionality like was implemented for other languages; https://learn.microsoft.com/en-us/graph/sdks/batch-requests?tabs=csharp currently running into AppAndTenantThresholds `msgraph.generated.models.o_data_errors.o_data_error.ODataError: APIError Code: 429 message: None error: MainError(additional_data={}, code='UnknownError', details=None, inner_error=InnerError(additional_data={}, client_request_id='b728708c-cafb-4e67-b7cc-ca58234fe772', date=DateTime(2024, 4, 24,...

> > [Example 8 from the SDK](https://github.com/microsoftgraph/msgraph-sdk-python/blob/4cbeedd2c7575f4938b22e6bcc9953d4874e0669/docs/general_samples.md#8-post-request) does not work for me (direct copy paste). I get a ModuleNotFoundError: No module named 'msgraph.generated.send_mail' error. > > I don't get that...

> @WardenHub Example 8 does not have a line that looks like: > > ```python > from msgraph.generated.send_mail.send_mail_post_request_body import SendMailPostRequestBody > ``` Ah excuse me, I tried removing the .me....

Hey that's really helpfull, I adapted the response to work with my secret token access and it actually sends the mail now! ``` versturende_email = '[email protected]' response = await graph_client.users.by_user_id(versturende_email).send_mail.post(request_body)...

> Well, this one: `ModuleNotFoundError: No module named 'msgraph.generated.me'` :) That's the thing you fixed for me! This is my full import statement that made example 8 work for me...

I also offer my 'final' anonymized script for sending multiple mails through the sdk for documentation / whomever may be looking for it. Thanks for your assistance @danielniccoli ```python import...

Short update from user case: above runs into [error 429 throttling errors](https://learn.microsoft.com/en-us/graph/throttling#sample-response) when bulk sending mails. please provide / add an example for the function (or SDK) to innately handle...