It's not that high sofisticated, but i need to access the MS Graph api from VBScript on a Windows 10 client.
I've googled for days now but couldn't find a documentation or example about how to authenticate from VBScript in MS graph and then access the api.
Is this even possible?
Best regards
BoxSon
Using the REST-based API makes it easy to communicate with MS Graph by VBScript with simple GET-Calls.
Related
I need help regarding how to call an external API (deployed to MuleSoft Cloudhub) from MS Teams chat/posts.
I want to interact with cloudhub deployed Mule API to perform operations such as starting, stopping, restarting, and updating mule applications in bulk from the MS Teams chat.
I've seen the following link and my question is exactly similar to this question:
Calling an external API from MS Teams chat
But I need something like "Slack Slash Commands" to send request to external APIs. here is a link which contains demo using Slack and I want to achieve same using MS teams:
https://dev.to/vignesh19/slack-bot-for-support-personnel-build-with-api-led-connectivity-7o1
Thanks in Advance!
I'm developing an API that should be able to create a shared mailbox in exchange. So far the only documentation I found around this is here https://learn.microsoft.com/en-us/powershell/module/exchange/new-mailbox?view=exchange-ps, and this uses PowerShell. Invoking PowerShell from an API is not easy, I'm wondering if there is a direct API call I can use for this, preferably MSGraph (I did some searching on this but could not find an endpoint)
I have implemented an application which accesses calendars in an Office 356 E3 tenant. I've used the client_credentials flow and obtained Admin Consent. So far everything seems to work as expected.
Now I have a customer how wants to use my application with an Exchange 2016 on-premise setup. Is there a way to use the same application in this setup as well? Or do I have to implement a new application using EWS?
The graph API is not available on on-prem Exchange, so yes, you have to replace the graph API code with EWS code.
Depending on your use case, it is probably possible to abstract it such that your application can use either one or the other.
We had a similar issue.
You can change from Office365 Api to the MsGraph Api which supports many of the same features as the Office365 Api does. Your on premise customer needs to put his Exchange servers into hybrit mode for this. MS explained the necessary steps here.
The only problem we had is that you cant subscribe onto on premise calendars.
Here is the MsGraph Api doc
https://learn.microsoft.com/en-us/graph/api/overview?view=graph-rest-1.0
You can also consider switching from Office365 to MsGraph entirely as this should also work for you Office365 customers. As I understand it MS is gonna expand the MsGraph Api in the future giving us a single point of contact for interaction with the Office suite and authentication.
#Marc LaFleur pls correct me if I'm wrong on this
How do I programmatically retrieve (ideally through the API) my remaining quota for that same API? Specifically the Youtube Data API.
Well, as of now, there is no tool that can do this or compute the remaining quota used in the API. What can I give you is this feature request coming from this SO question that requesting to have a Quota statistics API for the Google Products. But sadly to say, there is no exact date when they will approve and release this API.
What can you do right now is to estimate the remaining quota of your YouTube API by using this Quota Calculator. By using this tool, you can now know how much quota that you are using every day.
Hope this information helps you.
I have a webservice in .NET and I need to call that webservice with methods from a Windows Phone 7 app. I don't have any idea about development for Windows Phone 7. I just started 2 days ago. So please help me. I've searched and tried with many links, but I didn't find a solution.
This is the best available video tutorial..
Webservices for Windows Phone 7 in 7 mins
You could start by looking up some articles and tutorials on development for Windows Phone 7 to get familiar with the platform. MSDN Code Samples can be found here, they're pretty basic but good enough to get you on the way. After that you could do a quick Google search for "windows phone 7 web services". One of the results is this article explaining how to make and consume a webservice. I hope this helps you get started!
You mean to say Consuming Web Service.
If it is based on SOAP then you can add Service reference into your project by providing the Service API link and it generates the automatic classes for you.
For Restful service you can use HTTP Client or Web Client to make the API call and you can get the response on call back functions.
Hope Its Trivial answer