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
In 6.0.8 release both GrantTokenOperation.AuthorizedUuid and PNTokenPermissionMappingBase.Channels are marked with [Obsolete] attribute and it's recommended to use GrantTokenOperation.AuthorizedUserId and PNTokenPermissionMappingBase.Spaces accordingly. But neither Spaces nor AuthorizedUserId are taken into account when granting access token.
When using Spaces instead of Channel server returns 400 status code with error message This grant contains no permissions. Usage of AuthorizedUserId instead of AuthorizedUuid results in the loss of information about the authorized user in access token (value of authorized_uuid property of parsed access token is null)
The text was updated successfully, but these errors were encountered:
In 6.0.8 release both
GrantTokenOperation.AuthorizedUuid
andPNTokenPermissionMappingBase.Channels
are marked with[Obsolete]
attribute and it's recommended to useGrantTokenOperation.AuthorizedUserId
andPNTokenPermissionMappingBase.Spaces
accordingly. But neitherSpaces
norAuthorizedUserId
are taken into account when granting access token.When using
Spaces
instead ofChannel
server returns400
status code with error messageThis grant contains no permissions
. Usage ofAuthorizedUserId
instead ofAuthorizedUuid
results in the loss of information about the authorized user in access token (value ofauthorized_uuid
property of parsed access token isnull
)The text was updated successfully, but these errors were encountered: