Skip to content

Commit

Permalink
updated security-schema
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreasFischer1985 authored Aug 1, 2023
1 parent 51e00ed commit 058bc9d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ token=$(curl \

Der generierte Token muss bei folgenden GET-requests an https://rest.arbeitsagentur.de/infosysbub/studisu/pc/v1/studienangebote im header als 'OAuthAccessToken' inkludiert werden.

**Hinweis:** Alternativ kann man bei folgenden GET-requests auch direkt die *client_id* als Header-Parameter *'X-API-Key'* übergeben - *'OAuthAccessToken'* ist in diesem Fall nicht erforderlich. 🚀


## Studiensuche

Expand Down
20 changes: 9 additions & 11 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -206,19 +206,17 @@ paths:
example: 1
required: false

security:
- clientCredAuth:
- "read"
security:
- APIKeyHeaders: []

components:
components:
securitySchemes:
clientCredAuth: # <---- arbitrary name
type: oauth2
description: "Die Authentifizierung funktioniert per OAuth-2-Client Credentials mit JWTs. Client Credentials sind folgende:<br><br> **ClientID:** 5aee2cfe-1709-48a9-951d-eb48f8f73a74 <br> **ClientSecret:** 3309a57a-9214-40db-9abe-28b1bb30c08c<br><br>Der generierte Token muss bei folgenden GET-requests an https://rest.arbeitsagentur.de/infosysbub/studisu/pc/v1/studienangebote im header als 'OAuthAccessToken' inkludiert werden."
flows:
clientCredentials:
tokenUrl: https://rest.arbeitsagentur.de/oauth/gettoken_cc
scopes: {}
APIKeyHeaders:
type: apiKey
in: header
name: X-API-Key
description: "X-API-Key ist die Client-ID 5aee2cfe-1709-48a9-951d-eb48f8f73a74"

schemas:
Response:
type: object
Expand Down

0 comments on commit 058bc9d

Please sign in to comment.