< Return to Summary | File Generated: Tue Apr 16 2024 12:03:36 GMT+0000 (Coordinated Universal Time)

booking-partner-authentication >> client-credentials-flow

Booking Flow:

Opportunity Type:

Feature: Authentication / Booking Partner Authentication for Multiple Seller Systems (Implemented)

Test: Client Credentials Flow

Client Credentials Flow allows Booking Partners to access the Orders Feed

Running only this test

npm start -- --runInBand test/features/authentication/booking-partner-authentication/implemented/client-credentials-flow-test.js

Is this test failing?

The OpenActive Reference Implementation test result for this test can be used as a reference to help with debugging.


✅ 3 passed with 0 failures, 0 warnings and 0 suggestions


✅ Open ID Connect Authentication

Credentials

The test suite is using the credentials below for this test:

These credentials were retrieved using Dynamic Client Registration by the Broker Microservice upon startup, using the following configuration within bookingPartners.primary.authentication:

Discovery Request

GET https://localhost:5003/.well-known/openid-configuration


Response status code: 200.

{
  "issuer": "https://localhost:5003",
  "jwks_uri": "https://localhost:5003/.well-known/openid-configuration/jwks",
  "authorization_endpoint": "https://localhost:5003/connect/authorize",
  "token_endpoint": "https://localhost:5003/connect/token",
  "userinfo_endpoint": "https://localhost:5003/connect/userinfo",
  "end_session_endpoint": "https://localhost:5003/connect/endsession",
  "check_session_iframe": "https://localhost:5003/connect/checksession",
  "revocation_endpoint": "https://localhost:5003/connect/revocation",
  "introspection_endpoint": "https://localhost:5003/connect/introspect",
  "device_authorization_endpoint": "https://localhost:5003/connect/deviceauthorization",
  "frontchannel_logout_supported": true,
  "frontchannel_logout_session_supported": true,
  "backchannel_logout_supported": true,
  "backchannel_logout_session_supported": true,
  "scopes_supported": [
    "openid",
    "openactive-identity",
    "openactive-openbooking",
    "openactive-ordersfeed",
    "offline_access"
  ],
  "claims_supported": [
    "sub",
    "https://openactive.io/sellerId",
    "https://openactive.io/sellerName",
    "https://openactive.io/sellerUrl",
    "https://openactive.io/sellerLogo",
    "https://openactive.io/bookingServiceName",
    "https://openactive.io/bookingServiceUrl",
    "name",
    "https://openactive.io/clientId"
  ],
  "grant_types_supported": [
    "authorization_code",
    "client_credentials",
    "refresh_token",
    "implicit",
    "urn:ietf:params:oauth:grant-type:device_code"
  ],
  "response_types_supported": [
    "code",
    "token",
    "id_token",
    "id_token token",
    "code id_token",
    "code token",
    "code id_token token"
  ],
  "response_modes_supported": [
    "form_post",
    "query",
    "fragment"
  ],
  "token_endpoint_auth_methods_supported": [
    "client_secret_basic",
    "client_secret_post"
  ],
  "id_token_signing_alg_values_supported": [
    "RS256"
  ],
  "subject_types_supported": [
    "public"
  ],
  "code_challenge_methods_supported": [
    "plain",
    "S256"
  ],
  "request_parameter_supported": true,
  "registration_endpoint": "https://localhost:5003/connect/register"
}

Client Credentials Flow Request

POST https://localhost:5003/connect/token

"grant_type=client_credentials&scope=openactive-ordersfeed"

Response status code: 200.

{
  "access_token": "eyJhbGciOiJSUzI1NiIsImtpZCI6IkIwNEY3QjkxREUzQjk0NzhDNjE4MzNGQjI0QUE1Q0RCIiwidHlwIjoiYXQrand0In0.eyJuYmYiOjE3MTMyNjkwMTYsImV4cCI6MTcxMzI3MjYxNiwiaXNzIjoiaHR0cHM6Ly9sb2NhbGhvc3Q6NTAwMyIsImF1ZCI6Im9wZW5ib29raW5nIiwiY2xpZW50X2lkIjoiMjhhNTIzYjQtODUzMS00MTEzLTk2Y2QtMDQ1YzZlMTE0YmVjIiwiaHR0cHM6Ly9vcGVuYWN0aXZlLmlvL2NsaWVudElkIjoiMjhhNTIzYjQtODUzMS00MTEzLTk2Y2QtMDQ1YzZlMTE0YmVjIiwianRpIjoiNjUxMEVCOUM4MEMzRDMwQzY4M0VEMUY5QjMyMzkwMDEiLCJpYXQiOjE3MTMyNjkwMTYsInNjb3BlIjpbIm9wZW5hY3RpdmUtb3JkZXJzZmVlZCJdfQ.uGF2DeB_qy7whQ0fe0zU2BrvTf1Rve5jpbK8WR5qLYeBgbsVY5DunCJn053kb5nBPWzIfpd9BIVtSPsJ-2xl5ddQho1Wx4YeEB3UC4Eg6vuEc6BCE2EzX0txZUb80UkYnZvMhFfIWVncTaqnAuY8I5psYvIHP5zwiPaNNdcdAEwkPD6F1wmn0TtoPSHTx4HEgWbg1h2-XEruY7Dtk3z-Klfy1kDap4ugU_bWMnqkxcB5bjQbhHAmZUH6M4A-eEr5T2Vn9UDYRz6WNdPf_ltRf4mSNDdDHA7iDnqqIQpfsuk-xwXA8SdJSK1hjbTAKVMpGLJMty93O8efdPJH2_NQlg",
  "expires_in": 3600,
  "token_type": "Bearer",
  "scope": "openactive-ordersfeed"
}

Specs