Get browserSharedCookie
Namespace: microsoft.graph
Get a session cookie that can be shared between a Microsoft Edge process and an Internet Explorer process, while using Internet Explorer mode.
This API is available in the following national cloud deployments.
Global service | US Government L4 | US Government L5 (DOD) | China operated by 21Vianet |
---|---|---|---|
✅ | ❌ | ❌ | ❌ |
Permissions
Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions only if your app requires it. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.
Permission type | Least privileged permissions | Higher privileged permissions |
---|---|---|
Delegated (work or school account) | BrowserSiteLists.Read.All | BrowserSiteLists.ReadWrite.All |
Delegated (personal Microsoft account) | Not supported. | Not supported. |
Application | BrowserSiteLists.Read.All | BrowserSiteLists.ReadWrite.All |
HTTP request
GET /admin/edge/internetExplorerMode/siteLists/{browserSiteListId}/sharedCookies/{browserSharedCookieId}
Optional query parameters
This method supports some of the OData query parameters to help customize the response. For general information, see OData query parameters.
Request headers
Name | Description |
---|---|
Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Request body
Don't supply a request body for this method.
Response
If successful, this method returns a 200 OK
response code and a browserSharedCookie object in the response body.
Examples
Request
The following example shows a request.
GET https://graph.microsoft.com/v1.0/admin/edge/internetExplorerMode/siteLists/147713b8-4df2-4717-93a3-bfb1ebb54881/sharedCookies/07f4030f-45ff-4ad1-9277-3b8f6ee74141
Response
The following example shows the response.
Note: The response object shown here might be shortened for readability.
HTTP/1.1 200 OK
Content-Type: application/json
{
"status": "pendingEdit",
"id": "07f4030f-45ff-4ad1-9277-3b8f6ee74141",
"hostOrDomain": "www.microsoft.com",
"sourceEnvironment": "microsoftEdge",
"displayName": "Microsoft Cookie",
"path": "/",
"hostOnly": true,
"comment": "A cookie for microsoft.com",
"lastModifiedDateTime": "2022-06-29T11:32:39.6732721-04:00",
"createdDateTime": "2022-06-29T11:32:39.673272-04:00",
"lastModifiedBy": {
"user": {
"id": "f6ff107e-bc40-4918-a432-8d7b60030a7c",
"displayName": "Joe Smith"
},
"application": null
},
"history": [
{
"publishedDateTime": "2022-06-29T14:51:23.8662592Z",
"hostOrDomain": "www.microsoft.com",
"comment": "A cookie for InternetExplorer11",
"displayName": "Microsoft Cookie",
"sourceEnvironment": "internetExplorer11",
"hostOnly": true,
"lastModifiedBy": {
"user": {
"id": "f6ff107e-bc40-4918-a432-8d7b60030a7c",
"displayName": "Joe Smith"
},
"application": null
}
}
]
}