Add authentication for product pages

This commit is contained in:
Brendan Reilly
2025-04-17 16:28:13 -04:00
parent 5a0c8b37e1
commit 23f77986e2
3 changed files with 72 additions and 5 deletions

View File

@@ -662,6 +662,21 @@ class Config(object):
"stream has been released. If it has, the stream may be modified automatically "
"to use a different support stream.",
},
"product_pages_token_endpoint": {
"type": str,
"default": "",
"desc": "The endpoint to request a token to authenticate with Product Pages.",
},
"product_pages_oidc_client_id": {
"type": str,
"default": "",
"desc": "Client ID to authenticate with the token endpoint.",
},
"product_pages_client_secret": {
"type": str,
"default": "",
"desc": "Client secret to authenticate with the token endpoint.",
},
"product_pages_module_streams": {
"type": dict,
"default": {},