You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implement wrapper method of issue_stateless_channel_token (#981)
## Summary
- Add convenience wrapper methods
`issue_stateless_channel_token_by_jwt_assertion()` and
`issue_stateless_channel_token_by_client_secret()`
- The stateless token API has two authentication patterns (`oneOf`), but
the generated `issue_stateless_channel_token()` merges them into a
single method where all parameters are required. Previously, users had
to pass empty strings for unused parameters. These wrappers auto-fill
them.
## Test plan
- [x] `tests/api/test_issue_stateless_channel_token.py` — verifies
correct form parameters are sent for each authentication pattern
Resolves#823
Issues a new stateless channel access token, which doesn't have max active token limit unlike the other token types. The newly issued token is only valid for 15 minutes but can not be revoked until it naturally expires. # noqa: E501
574
578
This method makes a synchronous HTTP request by default. To make an
Issues a new stateless channel access token, which doesn't have max active token limit unlike the other token types. The newly issued token is only valid for 15 minutes but can not be revoked until it naturally expires. # noqa: E501
613
621
This method makes a synchronous HTTP request by default. To make an
Issues a new stateless channel access token, which doesn't have max active token limit unlike the other token types. The newly issued token is only valid for 15 minutes but can not be revoked until it naturally expires. # noqa: E501
534
538
This method makes a synchronous HTTP request by default. To make an
Issues a new stateless channel access token, which doesn't have max active token limit unlike the other token types. The newly issued token is only valid for 15 minutes but can not be revoked until it naturally expires. # noqa: E501
571
579
This method makes a synchronous HTTP request by default. To make an
0 commit comments