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
{{ message }}
This repository was archived by the owner on Nov 26, 2023. It is now read-only.
And this is working normaly.
But when I am trying to get users that are in group that has space in name like one I created.
"od vojeno" it is giving me the 401 resposne.
I have tried all those ways.
$client->get('/rest/api/2/group',[
'query' => [
'groupname' => 'od vojeno',
],
]);
And all combinations with decoded/encoded parameter but cant make it run allways is 401 error
The text was updated successfully, but these errors were encountered:
Hi Brezzhnev.
I am trying to to create request to jira api to have users in group provided by name.
$res = $client->get('/rest/api/2/group?groupname=administrators&expand=users');
And this is working normaly.
But when I am trying to get users that are in group that has space in name like one I created.
"od vojeno" it is giving me the 401 resposne.
I have tried all those ways.
$res = $client->get('/rest/api/2/group?groupname=od vojeno&expand=users');
$res = $client->get('/rest/api/2/group?groupname=od+vojeno&expand=users');
$res = $client->get('/rest/api/2/group?groupname=od%20vojeno&expand=users');
$res= $client->get('/rest/api/2/group?groupname=od%20vojeno&expand=users');
$client->get('/rest/api/2/group',[
'query' => [
'groupname' => 'od vojeno',
],
]);
And all combinations with decoded/encoded parameter but cant make it run allways is 401 error
The text was updated successfully, but these errors were encountered: