service-application

Microsoft Graph Api Webhook subscription via Rest Api not working anymore

孤者浪人 提交于 2020-06-28 17:17:46
问题 I have a working application that receive email webhook events from MS-Graph Api. I noticed that I could not find the subscription back using the subscriptionId, I get a 404 error.I also cannot delete the subscription using the id. I investigated further and noticed that I cannot create new subscriptions anymore: The Application registered in Azure AD is a service-application (daemon) My application auto renews the subscriptions and every time it did that I get a 202 response, but somehow the

Limit access to groups or individual mailboxes using a service application in Azure Ad

試著忘記壹切 提交于 2019-12-18 05:17:21
问题 I have an Azure integrated service application (daemon app) with permissions to the Microsoft graph api, I can now read all the mailboxes for the entire company, which is awesome but might raise some concerns with the business management. We use Outlook in Office 365.Is there a way to specify mailboxes that the app can have access to instead of having access to all mailboxes/users. 回答1: The daemon app which use the client credential to acquire the access token. The client credential flow is

WCF Client error: “The address of the security token issuer is not specified”

家住魔仙堡 提交于 2019-12-07 10:06:45
问题 I am receiving the following error from my WCF Client. "The address of the security token issuer is not specified. An explicit issuer address must be specified in the binding for target 'http://site.com/TLAPI.svc' or the local issuer address must be configured in the credentials." I am trying to connect to a SharePoint Service Application. I have added the service reference which generated the client class below. Here is my code thus far: TipAndLeadAPIContractClient client = new

WCF Client error: “The address of the security token issuer is not specified”

余生长醉 提交于 2019-12-05 16:18:57
I am receiving the following error from my WCF Client. "The address of the security token issuer is not specified. An explicit issuer address must be specified in the binding for target 'http://site.com/TLAPI.svc' or the local issuer address must be configured in the credentials." I am trying to connect to a SharePoint Service Application. I have added the service reference which generated the client class below. Here is my code thus far: TipAndLeadAPIContractClient client = new TipAndLeadAPIContractClient(@"CustomBinding_ITipAndLeadAPIContract", @"http://site.com/TLAPI.svc"); client