I am using the core and git clients and they work perfectly. However, I can't find a way to get the identity of the current signed in user.
If I try and use the profile client, I get messages like this:
profile_client.get_profile('me')
ValueError: API resource location f83735dc-483f-4238-a291-d45f6080a9af is not registered on https://XXX.visualstudio.com.
Or with the identity client:
identity_client.get_self()
ValueError: API resource location 4bb02b5b-c120-4be2-b68e-21f7c50a4b82 is not registered on https://XXX.vssps.visualstudio.com.
However, if I manually make the same request in the browser, it works fine (for example https://app.vssps.visualstudio.com/_apis/profile/profiles/me?api-version=5.0).
It seems to only be requests related to the current users's profile which don't resolve. The following request goes through successfully:
identity_client.list_groups()
The client is authenticated with OAuth2 with scope vso.code_full vso.code_status vso.graph vso.identity vso.authorization_grant.
I am using the core and git clients and they work perfectly. However, I can't find a way to get the identity of the current signed in user.
If I try and use the profile client, I get messages like this:
ValueError: API resource location f83735dc-483f-4238-a291-d45f6080a9af is not registered on https://XXX.visualstudio.com.Or with the identity client:
ValueError: API resource location 4bb02b5b-c120-4be2-b68e-21f7c50a4b82 is not registered on https://XXX.vssps.visualstudio.com.However, if I manually make the same request in the browser, it works fine (for example https://app.vssps.visualstudio.com/_apis/profile/profiles/me?api-version=5.0).
It seems to only be requests related to the current users's profile which don't resolve. The following request goes through successfully:
The client is authenticated with OAuth2 with scope
vso.code_full vso.code_status vso.graph vso.identity vso.authorization_grant.