Office Addins - Unable to fetching attachments - office-addins

I am trying to develop an Add-in for Outlook, for that I have cloned this repo (https://github.com/OfficeDev/Outlook-Add-in-JavaScript-GetAttachments) and have followed the instructions mentioned there.
My question is, when my add-in makes a request to https://localhost:44320/api/AttachmentService, it sends back a response with the following content:
{
"isError": false,
"message": null,
"attachmentsProcessed": 2,
"attachmentNames": [
"avatar-1606916_960_720.png",
"HnVmB0-k.jpg"
]
}
But it does not tell me the URL of my attachment using which i can view the attachment.
Please help me
Thanks in advance

Related

Salesforce API failing with API_DISABLED_FOR_ORG

When calling this Salesforce api:
https://{host}/DM/services/data/v48.0/chatter/feed-elements
I get this response:
[
{
"message": "The Chatter Connect API is not enabled for this organization or user type.",
"errorCode": "API_DISABLED_FOR_ORG"
}
]
I'm using a trial org and this has been working until recently. What might be going on? does it require a beta package to work or doesn't matter? Any permissions that can be related to this? Any settings that I can look at?

How to POST Oauth2PermissionGrants in Microsoft Graph?

We are looking to automatize admin consent for Azure Enterprise Applications through Microsoft graph, more specifically `/beta/oauth2permissiongrants/
We have already successfully deployed an app that can do this, but now it fails.
The error message is related to property expiryTime which has been recently deprecated. We have tried to change our POST to leave that property out, but it still fails. And if we leave it in, it also fails. And it worked just fine before.
{
"clientId":"6b765713-9aac-4bf3-a5e9-4c11228e2e49",
"consentType":"AllPrincipals",
"resourceId":"ac07f639-74ff-459e-b335-2fcc434dbd76",
"scope":"User.Read openid",
}
Return is
{
"error": {
"code": "Request_BadRequest",
"message": "Missing property: expiryTime",
"innerError": {
"request-id": "d61927fe-4ab9-40a9-9b7e-ff33c138bb93",
"date": "2019-09-16T12:18:06"
}
}
}
The expiryTime property shouldn't be relevant anymore, yet no matter what we do we get an error message that says it is missing.
Does anyone know a way around this?
If I don't add expiryTime property in the request body, I will get the error the same as yours.
But after adding it to the request body, I can post successfully.
By the way, beta version api is not recommended to use.
APIs under the /beta version in Microsoft Graph are subject to change.
Use of these APIs in production applications is not supported.

How to use ADFS Webfinger Endpoint?

I'm very new to ADFS and the Web Application Proxy. That said, I've recently setup an ADFS server and a WAP server and have all of the configuration setup to successfully handle SAML SSO to my custom application.
I am now attempting to use the Webfinger endpoint. By default, that endpoint is enabled (and proxy enabled). Unfortunately, I have not been able to get any meaningful response from this endpoint and am unsure even how to set it up. Searching for "ADFS Webfinger" documentation has been fruitless. Honestly, I can't find anything other than discussions of an Event Viewer error and other useless information.
I have attempted various combinations of URLs.
https://my-adfs-server/.well-known/webfinger?resource=https%3A%2F%2Fmy-adfs-server%2Fadfs%2F/ls&rel=http://schemas.microsoft.com/rel/trusted-realm
This gives me back a JSON:
{
"subject": "https://my-adfs-server",
"links": [
{
"rel": "http://schemas.microsoft.com/rel/trusted-realm",
"href": "https://my-adfs-server"
}
]
}
but it is the only URL I have found that returns anything.
https://my-adfs-server/.well-known/webfinger?resource=acct:<myemail>
This gives me a 404 with a valid email (acct).
What am I missing? Even if that last URL was working, how do I resolve it to specify information that should be returned in the JRD document for this particular account? Do I need IIS installed (I don't have it installed currently) and custom code?
Thanks for any help/insight.
Pink

AADSTS50011: the specified reply URL does not match what is configured

I have seen a number of threads on this topic already. Apologies for adding another one but I haven't been able to solve my issue. I've created an ASP.NET Core 2.1 MVC application and published to Azure. The error is:
AADSTS50011: The reply url specified in the request does not match the reply urls configured for the application: 'a7f1d462-fce3-402c-9975-ac6f00c93a50'.
My appsettings.json is:
"AzureAd": {
"ClientId": "a7f1d462-fce3-402c-9975-ac6f00c93a50",
"Domain": "sentech.us",
"Instance": "https://login.microsoftonline.com/",
"TenantId": "<removed>",
"CallbackPath": "/signin-oidc",
"ClientSecret": "<removed>",
"AppIDURL": "https://sentech.us/LoginTest",
"ConfigView": "MVC"
}
Reply URLs:
https://logintest20180704120701.azurewebsites.net/signout-oidc
https://localhost:44319/signin-oidc
https://logintest20180704120701.azurewebsites.net/signin-oidc
The local host sign-in works fine. The app is simply the code created by Visual Studio by default with no modifications yet.
Thanks in advance for any help!
You need to set the Reply URL as the main url of your app and it needs to match the settings in the appsettings.json (and web.config if you have one). You do not appear to have a Reply URL set in your JSON so you need to add that there and in your solution. If you publish the solution you need to ensure that you change the Reply URL that you have set in your code to the published URL. This also needs to be set in your App Registration.
Please refer to my blog post and accompanying video.
See also this sample repository and documentation that should help you achieve what you are aiming for.

App Engine Admin API Error - The "appengine.applications.create" permission is required

We would like to automatically create a project ID and install our ULAPPH Cloud Desktop application using the App Engine Admin API (REST) and Golang.
https://cloud.google.com/appengine/docs/admin-api/?hl=en_US&_ga=1.265860687.1935695756.1490699302
https://ulapph-public-1.appspot.com/articles?TYPE=ARTICLE&DOC_ID=3&SID=TDSARTL-3
We were able to get a token but when we tried to create a project ID, we get the error below.
[Response OK] Successful connection to Appengine Admin API.
[Token] { "access_token" : "TOKEN_HERE", "expires_in" : 3599, "token_type" : "Bearer" }
[Response Code] 403
[Response Body] { "error": { "code": 403, "message": "Operation not allowed", "status": "PERMISSION_DENIED", "details": [ { "#type": "type.googleapis.com/google.rpc.ResourceInfo", "resourceType": "gae.api", "description": "The \"appengine.applications.create\" permission is required." } ] } }
We are just using the REST API calls. Request for token was successful as you can see above and the scope is ok as well. Now, when we posted the request to create application, we are having the error that says "appengine.application.create" permission required.
How do we specify the permission?
What are the possible reasons why we are getting that error? Do we missed to send a field in JSON or in query?
As per below link, we just need to pass the json containing the id and location. We also just need to pass the token in the Authorization header. The same logic I have used successfully in accessing Youtube, Drive APIs etc so not sure what needs to be done since I have followed the docs available.
I have also posted the same issue in Google Groups and now waiting for their reply.
It seems you've given no details about how you set up the account you're using to authorize the request. You'll need to make sure the appengine.applications.create permission is given to the account you're using, as mentioned in the error text. You can use the Google Identity and Access Management (IAM) API for this.
(by the way, I'd given this answer in the original thread, although you didn't reply or seem to take action on it. check it out! this is likely the solution you need!)

Resources