APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Upload a plain text secret to a trustFrameworkKeyset. Examples of secrets are application secrets in Azure Active Directory, Google, Facebook, or any other identity provider. his method returns trustFrameworkKey.
Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see Permissions.
Permission type
Permissions (from least to most privileged)
Delegated (work or school account)
TrustFrameworkKeySet.ReadWrite.All
Delegated (personal Microsoft account)
Not supported.
Application
TrustFrameworkKeySet.ReadWrite.All
HTTP request
POST /trustFramework/keySets/{id}/uploadSecret
Request headers
Name
Description
Authorization
Bearer {token}. Required.
Content-type
application/json. Required.
Request body
In the request body, provide a JSON object with the following parameters.
Parameter
Type
Description
use
String
Similar to the use property of trustFrameworkKey.
k
String
Similar to the k property of trustFrameworkKey. This is the field that is used to send the secret.
nbf
Int64
Similar to the nbf property of trustFrameworkKey.
exp
Int64
Similar to the exp property of trustFrameworkKey.
Response
If successful, this method returns a 200 OK response code and a new trustFrameworkKey object in the response body.
GraphServiceClient graphClient = new GraphServiceClient( authProvider );
var use = "use-value";
var k = "application-secret-to-be-uploaded";
var nbf = 1508969811;
var exp = 1508973711;
await graphClient.TrustFramework.KeySets["{trustFrameworkKeySet-id}"]
.UploadSecret(use,k,nbf,exp)
.Request()
.PostAsync();
Important
Microsoft Graph SDKs use the v1.0 version of the API by default, and do not support all the types, properties, and APIs available in the beta version. For details about accessing the beta API with the SDK, see Use the Microsoft Graph SDKs with the beta API.
Microsoft Graph SDKs use the v1.0 version of the API by default, and do not support all the types, properties, and APIs available in the beta version. For details about accessing the beta API with the SDK, see Use the Microsoft Graph SDKs with the beta API.
Microsoft Graph SDKs use the v1.0 version of the API by default, and do not support all the types, properties, and APIs available in the beta version. For details about accessing the beta API with the SDK, see Use the Microsoft Graph SDKs with the beta API.
GraphServiceClient graphClient = GraphServiceClient.builder().authenticationProvider( authProvider ).buildClient();
String use = "use-value";
String k = "application-secret-to-be-uploaded";
Long nbf = 1508969811L;
Long exp = 1508973711L;
graphClient.trustFramework().keySets("{id}")
.uploadSecret(TrustFrameworkKeySetUploadSecretParameterSet
.newBuilder()
.withUse(use)
.withK(k)
.withNbf(nbf)
.withExp(exp)
.build())
.buildRequest()
.post();
Important
Microsoft Graph SDKs use the v1.0 version of the API by default, and do not support all the types, properties, and APIs available in the beta version. For details about accessing the beta API with the SDK, see Use the Microsoft Graph SDKs with the beta API.
//THE GO SDK IS IN PREVIEW. NON-PRODUCTION USE ONLY
graphClient := msgraphsdk.NewGraphServiceClient(requestAdapter)
requestBody := msgraphsdk.New()
use := "use-value"
requestBody.SetUse(&use)
k := "application-secret-to-be-uploaded"
requestBody.SetK(&k)
nbf := int64(1508969811)
requestBody.SetNbf(&nbf)
exp := int64(1508973711)
requestBody.SetExp(&exp)
trustFrameworkKeySetId := "trustFrameworkKeySet-id"
result, err := graphClient.TrustFramework().KeySetsById(&trustFrameworkKeySetId).UploadSecret(trustFrameworkKeySet-id).Post(requestBody)
Important
Microsoft Graph SDKs use the v1.0 version of the API by default, and do not support all the types, properties, and APIs available in the beta version. For details about accessing the beta API with the SDK, see Use the Microsoft Graph SDKs with the beta API.
Microsoft Graph SDKs use the v1.0 version of the API by default, and do not support all the types, properties, and APIs available in the beta version. For details about accessing the beta API with the SDK, see Use the Microsoft Graph SDKs with the beta API.