Application v1.0 and beta APIs broken field: oauth2RequiredPostResponse
#273
Labels
Area: GraphService
An issue with the Microsoft Graph Service API
Both the v1.0 and beta APIs have broken handling of the
oauth2RequiredPostResponse
field, in different ways:Beta API
Less urgent, the beta API seems to have this field misnamed as
oauth2RequirePostResponse
- note the missingd
ofRequire(d)
. If you send a field with the documented name ofoauth2RequiredPostResponse
, you get a 404 error both forPOST
andPATCH
requests, however it works with the misspelled field name.Correct name yields 404
POST /beta/applications
PATCH /beta/applications/{id}
Incorrect name is successful
POST /beta/applications
PATCH /beta/applications/{id}
v1.0 API
More urgently, the v1.0 API doesn't seem to accept either of these namings of this field and it is impossible to create an application whilst specifying this field, or to set this field on an existing application. This means we cannot currently use the v1.0 API for applications.
Correct name fails
POST /v1.0/applications
PATCH /v1.0/applications/{id}
Incorrect name also fails
POST /v1.0/applications
PATCH /v1.0/applications/{id}
The text was updated successfully, but these errors were encountered: