Skip to content

Commit f6d5f8e

Browse files
committed
fix :path issues
1 parent 1ed4d90 commit f6d5f8e

File tree

5 files changed

+5
-9
lines changed

5 files changed

+5
-9
lines changed

src/pages/guides/authentication/JWT/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
The Service Account (JWT) credentials have been deprecated in favor of the OAuth Server-to-Server credentials. Your applications using the Service Account (JWT) credentials will stop working after Jan 27, 2025. You must migrate to the new credential by **Jan 27, 2025**, to ensure your application continues functioning. [Learn more](./ServerToServerAuthentication/migration.md).
66

7-
To establish a secure service-to-service Adobe I/O API session, you must create a JSON Web Token (JWT) that encapsulates the identity of your integration, and then exchange it for an access token. Every request to an Adobe service must include the access token in the `Authorization` header, along with the API Key (Client ID) that was generated when you created the [Service Account Integration](../ServiceAccountIntegration.md) in the [Adobe Developer Console](https://developer.adobe.com/console/).
7+
To establish a secure service-to-service Adobe I/O API session, you must create a JSON Web Token (JWT) that encapsulates the identity of your integration, and then exchange it for an access token. Every request to an Adobe service must include the access token in the `Authorization` header, along with the API Key (Client ID) that was generated when you created the [Service Account Integration](../service-accountIntegration.md) in the [Adobe Developer Console](https://developer.adobe.com/console/).
88

99
## Authentication Workflow
1010

src/pages/guides/authentication/JWT/jwt-certificate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<InlineAlert slots="text"/>
55

6-
The Service Account (JWT) credentials have been deprecated in favor of the OAuth Server-to-Server credentials. Your applications using the Service Account (JWT) credentials will stop working after Jan 27, 2025. You must migrate to the new credential by **Jan 27, 2025**, to ensure your application continues functioning. [Learn more](./ServerToServerAuthentication/migration.md).
6+
The Service Account (JWT) credentials have been deprecated in favor of the OAuth Server-to-Server credentials. Your applications using the Service Account (JWT) credentials will stop working after Jan 27, 2025. You must migrate to the new credential by **Jan 27, 2025**, to ensure your application continues functioning. [Learn more](../ServerToServerAuthentication/migration.md).
77

88
Create a private key and a public certificate. Make sure you store these securely.
99

src/pages/guides/authentication/JWT/samples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<InlineAlert slots="text"/>
55

6-
The Service Account (JWT) credentials have been deprecated in favor of the OAuth Server-to-Server credentials. Your applications using the Service Account (JWT) credentials will stop working after Jan 27, 2025. You must migrate to the new credential by **Jan 27, 2025**, to ensure your application continues functioning. [Learn more](./ServerToServerAuthentication/migration.md).
6+
The Service Account (JWT) credentials have been deprecated in favor of the OAuth Server-to-Server credentials. Your applications using the Service Account (JWT) credentials will stop working after Jan 27, 2025. You must migrate to the new credential by **Jan 27, 2025**, to ensure your application continues functioning. [Learn more](../ServerToServerAuthentication/migration.md).
77

88
The following samples demonstrate JWT generation and exchanging it with Adobe IMS endpoint to retrieve an access token.
99

src/pages/guides/authentication/ServiceAccountIntegration.md renamed to src/pages/guides/authentication/service-accountIntegration.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Service Account Connection
22

3-
43
<InlineAlert slots="text"/>
54

65
Service Account (JWT) credentials have been deprecated in favor of the OAuth Server-to-Server credentials. Your applications using the Service Account (JWT) credentials will stop working after Jan 27, 2025. **You must migrate to the new credential by Jan 27, 2025 in order to ensure your application continues to function. View our [migration guide](../ServerToServerAuthentication/migration.md) to know more.**
@@ -54,6 +53,3 @@ The response body includes your newly generated access token (`access_token`).
5453
<InlineAlert slots="text"/>
5554

5655
Check the documentation for the specific API service for which you’re hitting authenticated endpoints to find what other parameters are expected. Most of them need an `x-api-key`, which will be the same as your `client_id`.
57-
58-
59-

static/redirections.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@
3838
case "#!AdobeDocs/adobeio-auth/master/AuthenticationOverview/OAuthIntegration.md":
3939
redirectPath = prefixPath + "guides/authentication/OAuthIntegration/";
4040
break;
41-
case "#!AdobeDocs/adobeio-auth/master/AuthenticationOverview/ServiceAccountIntegration.md":
42-
redirectPath = prefixPath + "guides/authentication/ServiceAccountIntegration/";
41+
case "#!AdobeDocs/adobeio-auth/master/AuthenticationOverview/service-accountIntegration.md":
42+
redirectPath = prefixPath + "guides/authentication/service-accountIntegration/";
4343
break;
4444
case "#!AdobeDocs/adobeio-auth/master/OAuth/OAuth.md":
4545
redirectPath = prefixPath + "guides/authentication/OAuth/";

0 commit comments

Comments
 (0)