あなたが使用してプロジェクトの詳細を取得した場合
{
"expand": "description,lead,url,projectKeys",
"self": "http://www.example.com/jira/rest/api/2/project/EX",
"id": "10000",
"key": "EX",
"description": "This project was created as an example for REST.",
"lead": {
"self": "http://www.example.com/jira/rest/api/2/user?username=fred",
"name": "fred",
"avatarUrls": {
"48x48": "http://www.example.com/jira/secure/useravatar?size=large&ownerId=fred",
"24x24": "http://www.example.com/jira/secure/useravatar?size=small&ownerId=fred",
"16x16": "http://www.example.com/jira/secure/useravatar?size=xsmall&ownerId=fred",
"32x32": "http://www.example.com/jira/secure/useravatar?size=medium&ownerId=fred"
},
"displayName": "Fred F. User",
"active": false
},
...
"avatarUrls": {
"48x48": "http://www.example.com/jira/secure/projectavatar?size=large&pid=10000",
"24x24": "http://www.example.com/jira/secure/projectavatar?size=small&pid=10000",
"16x16": "http://www.example.com/jira/secure/projectavatar?size=xsmall&pid=10000",
"32x32": "http://www.example.com/jira/secure/projectavatar?size=medium&pid=10000"
},
"projectCategory": {
"self": "http://www.example.com/jira/rest/api/2/projectCategory/10000",
"id": "10000",
"name": "FIRST",
"description": "First Project Category"
}
}
をavatarUrls部分がdiferent解像度でプロジェクトのアイコンのURLを記載しています。
avatarUrlsのセクションは、のリードの下にもあります。これには、プロジェクトリーダーのアバターのURLが記載されています。
ありがとう、 以下のAPIを使用してプロジェクトアバターを取得しました。 /rest/api/2/project/{ProjectKey}/ –
このURLはブラウザでは動作しますが、コードではGETリクエストを使用して画像データをダウンロードし、次に画像に変換する必要があります。これは正確な画像URLではないので、imageViewにこの画像urlを割り当てることはできません。 –
projectId(pid)がある場合は、urlの下のpidの値を置き換えてアバターを取得することもできます。 http://www.example.com/jira/secure/projectavatar?pid=10000 –