В библиотеке для работы с OAuth 2.0 league/oauth2-client
https://github.com/thephpleague/oauth2-client для ее использования, помимо прочей информации, нужно указать urlResourceOwnerDetails. Где мне взять этот url? (в документации не нашел)
$provider = new \League\OAuth2\Client\Provider\GenericProvider([
'clientId' => APP_ID, // The client ID assigned to you by the provider
'clientSecret' => APP_SECRET_CODE, // The client password assigned to you by the provider
'redirectUri' => APP_REG_URL,
'urlAuthorize' => 'https://bitrix.mysite.ru/oauth/authorize',
'urlAccessToken' => 'https://oauth.bitrix.info/oauth/token',
'urlResourceOwnerDetails' => ?
]);