Espace de noms: microsoft.graph
Importante
Les API sous la version /beta dans Microsoft Graph sont susceptibles d’être modifiées. L’utilisation de ces API dans des applications de production n’est pas prise en charge. Pour déterminer si une API est disponible dans v1.0, utilisez le sélecteur Version .
Mettez à jour les propriétés d’un objet browserSharedCookie .
Cette API est disponible dans les déploiements de cloud national suivants.
| Service global |
Gouvernement des États-Unis L4 |
Us Government L5 (DOD) |
Chine gérée par 21Vianet |
| ✅ |
❌ |
❌ |
❌ |
Autorisations
Choisissez l’autorisation ou les autorisations marquées comme moins privilégiées pour cette API. Utilisez une autorisation ou des autorisations privilégiées plus élevées uniquement si votre application en a besoin. Pour plus d’informations sur les autorisations déléguées et d’application, consultez Types d’autorisations. Pour en savoir plus sur ces autorisations, consultez les informations de référence sur les autorisations.
| Type d’autorisation |
Autorisations avec privilèges minimum |
Autorisations privilégiées plus élevées |
| Déléguée (compte professionnel ou scolaire) |
BrowserSiteLists.ReadWrite.All |
Non disponible. |
| Déléguée (compte Microsoft personnel) |
Non prise en charge. |
Non prise en charge. |
| Application |
BrowserSiteLists.ReadWrite.All |
Non disponible. |
Requête HTTP
PATCH /admin/edge/internetExplorerMode/siteLists/{browserSiteListId}/sharedCookies/{browserSharedCookieId}
Corps de la demande
Dans le corps de la demande, fournissez uniquement les valeurs des propriétés à mettre à jour. Les propriétés existantes qui ne sont pas incluses dans le corps de la demande conservent leurs valeurs précédentes ou sont recalculées en fonction des modifications apportées à d’autres valeurs de propriété.
Le tableau suivant spécifie les propriétés qui peuvent être mises à jour.
| Propriété |
Type |
Description |
| comment |
String |
Commentaire du cookie. |
| displayName |
String |
Nom du cookie. |
| hostOnly |
Booléen |
Détermine si un cookie est un cookie hôte uniquement ou un cookie de domaine. |
| hostOrDomain |
String |
URL du cookie. |
| chemin |
String |
Chemin d’accès du cookie. |
| sourceEnvironment |
browserSharedCookieSourceEnvironment |
Spécifie la façon dont les cookies sont partagés entre Microsoft Edge et Internet Explorer. Les valeurs possibles sont : microsoftEdge, internetExplorer11, both, unknownFutureValue. |
Réponse
Si elle réussit, cette méthode renvoie un code de réponse 204 No Content.
Exemples
Demande
L’exemple suivant illustre une demande.
PATCH https://graph.microsoft.com/beta/admin/edge/internetExplorerMode/siteLists/20579923-e6c8-425a-b728-47f43c10bc05/sharedCookies/972a5778-df43-45fd-9c2a-5dd944c7a1ce
Content-Type: application/json
Content-length: 349
{
"hostOrDomain": "www.microsoft.com",
"sourceEnvironment": "microsoftEdge",
"displayName": "Microsoft Cookie",
"path": "/",
"hostOnly": true,
"comment": "Updating source environment."
}
// Code snippets are only available for the latest version. Current version is 5.x
// Dependencies
using Microsoft.Graph.Beta.Models;
var requestBody = new BrowserSharedCookie
{
HostOrDomain = "www.microsoft.com",
SourceEnvironment = BrowserSharedCookieSourceEnvironment.MicrosoftEdge,
DisplayName = "Microsoft Cookie",
Path = "/",
HostOnly = true,
Comment = "Updating source environment.",
};
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.Admin.Edge.InternetExplorerMode.SiteLists["{browserSiteList-id}"].SharedCookies["{browserSharedCookie-id}"].PatchAsync(requestBody);
// Code snippets are only available for the latest major version. Current major version is $v0.*
// Dependencies
import (
"context"
msgraphsdk "github.com/microsoftgraph/msgraph-beta-sdk-go"
graphmodels "github.com/microsoftgraph/msgraph-beta-sdk-go/models"
//other-imports
)
requestBody := graphmodels.NewBrowserSharedCookie()
hostOrDomain := "www.microsoft.com"
requestBody.SetHostOrDomain(&hostOrDomain)
sourceEnvironment := graphmodels.MICROSOFTEDGE_BROWSERSHAREDCOOKIESOURCEENVIRONMENT
requestBody.SetSourceEnvironment(&sourceEnvironment)
displayName := "Microsoft Cookie"
requestBody.SetDisplayName(&displayName)
path := "/"
requestBody.SetPath(&path)
hostOnly := true
requestBody.SetHostOnly(&hostOnly)
comment := "Updating source environment."
requestBody.SetComment(&comment)
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=go
sharedCookies, err := graphClient.Admin().Edge().InternetExplorerMode().SiteLists().ByBrowserSiteListId("browserSiteList-id").SharedCookies().ByBrowserSharedCookieId("browserSharedCookie-id").Patch(context.Background(), requestBody, nil)
// Code snippets are only available for the latest version. Current version is 6.x
GraphServiceClient graphClient = new GraphServiceClient(requestAdapter);
BrowserSharedCookie browserSharedCookie = new BrowserSharedCookie();
browserSharedCookie.setHostOrDomain("www.microsoft.com");
browserSharedCookie.setSourceEnvironment(BrowserSharedCookieSourceEnvironment.MicrosoftEdge);
browserSharedCookie.setDisplayName("Microsoft Cookie");
browserSharedCookie.setPath("/");
browserSharedCookie.setHostOnly(true);
browserSharedCookie.setComment("Updating source environment.");
BrowserSharedCookie result = graphClient.admin().edge().internetExplorerMode().siteLists().byBrowserSiteListId("{browserSiteList-id}").sharedCookies().byBrowserSharedCookieId("{browserSharedCookie-id}").patch(browserSharedCookie);
const options = {
authProvider,
};
const client = Client.init(options);
const browserSharedCookie = {
hostOrDomain: 'www.microsoft.com',
sourceEnvironment: 'microsoftEdge',
displayName: 'Microsoft Cookie',
path: '/',
hostOnly: true,
comment: 'Updating source environment.'
};
await client.api('/admin/edge/internetExplorerMode/siteLists/20579923-e6c8-425a-b728-47f43c10bc05/sharedCookies/972a5778-df43-45fd-9c2a-5dd944c7a1ce')
.version('beta')
.update(browserSharedCookie);
<?php
use Microsoft\Graph\Beta\GraphServiceClient;
use Microsoft\Graph\Beta\Generated\Models\BrowserSharedCookie;
use Microsoft\Graph\Beta\Generated\Models\BrowserSharedCookieSourceEnvironment;
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$requestBody = new BrowserSharedCookie();
$requestBody->setHostOrDomain('www.microsoft.com');
$requestBody->setSourceEnvironment(new BrowserSharedCookieSourceEnvironment('microsoftEdge'));
$requestBody->setDisplayName('Microsoft Cookie');
$requestBody->setPath('/');
$requestBody->setHostOnly(true);
$requestBody->setComment('Updating source environment.');
$result = $graphServiceClient->admin()->edge()->internetExplorerMode()->siteLists()->byBrowserSiteListId('browserSiteList-id')->sharedCookies()->byBrowserSharedCookieId('browserSharedCookie-id')->patch($requestBody)->wait();
Import-Module Microsoft.Graph.Beta.DeviceManagement
$params = @{
hostOrDomain = "www.microsoft.com"
sourceEnvironment = "microsoftEdge"
displayName = "Microsoft Cookie"
path = "/"
hostOnly = $true
comment = "Updating source environment."
}
Update-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookie -BrowserSiteListId $browserSiteListId -BrowserSharedCookieId $browserSharedCookieId -BodyParameter $params
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph_beta import GraphServiceClient
from msgraph_beta.generated.models.browser_shared_cookie import BrowserSharedCookie
from msgraph_beta.generated.models.browser_shared_cookie_source_environment import BrowserSharedCookieSourceEnvironment
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
request_body = BrowserSharedCookie(
host_or_domain = "www.microsoft.com",
source_environment = BrowserSharedCookieSourceEnvironment.MicrosoftEdge,
display_name = "Microsoft Cookie",
path = "/",
host_only = True,
comment = "Updating source environment.",
)
result = await graph_client.admin.edge.internet_explorer_mode.site_lists.by_browser_site_list_id('browserSiteList-id').shared_cookies.by_browser_shared_cookie_id('browserSharedCookie-id').patch(request_body)
Réponse
L’exemple suivant illustre la réponse.
HTTP/1.1 204 No Content