[12:12:19] multichill: https://www.wikidata.org/wiki/Q1853880#P186 has "collage art" as a material, but that seems wrong - is there a good way of adding that info? [12:13:17] (similar with "mixed media") [13:58:02] Thiemo_WMDE: thanks @ patches :) [13:58:06] and tickets [13:58:29] <3 [13:58:37] <3 [14:11:43] Lydia_WMDE: Happy do work on these. Open questions for you: Please prioritize https://phabricator.wikimedia.org/T188899 and make sure we track the possibly clickjacking issue. I have not created a ticket for this yet. [14:17:58] Thiemo_WMDE: i am not sure about that. talk about it tomorrow? [14:18:06] Sure. [14:18:13] cool [19:46:54] Hi there, I am having problems to retrieved the image name of an entity. For instance, from this entity https://www.wikidata.org/w/api.php?action=wbgetentities&ids=Q291169&languages=en&format=json . I am retrieving currently the description and is working fine. In my php the code is this for the description. $description = $data->entities->$wikidataid->descriptions->en->value; And is working fine as I said. The json path is right [19:47:16] the image $image = $data->entities->$wikidataid->claims->P18->mainsnak->datavalue->value; it returns empty [19:47:58] any ideas why? [19:48:29] freeedom: you’re missing a [0] after ->P18 – the item could have multiple image statements [19:48:41] (or none, so make sure you’re doing error handling correctly ;) ) [19:49:09] thats great! [19:49:15] I will try that, thanks [20:13:19] in saprkle how can I request labels in both hebrew and english [20:15:28] ?item rdfs:label ?LabelEN filter (lang(?LabelEN) = "en") . ?item rdfs:label ?LabelUK filter (lang(?LabelUK) = "uk") [20:15:40] https://www.wikidata.org/wiki/Wikidata:SPARQL_query_service/queries/examples#Numbers_of_sitelinks_for_items_with_Art_UK_artist_ID_(P1367)_for_each_language [20:15:56] I mean hebrew would be different [20:19:38] excellent [20:45:53] How do I get access to the "thumburl" if I do not know the "pageid"?? https://commons.wikimedia.org/w/api.php?action=query&titles=File%3AJapanese+diet+inside.jpg&prop=imageinfo&iiprop=url&iiurlwidth=130&format=json [20:47:21] With multiple objects in php I can do imageinfo[0] [20:47:42] but If I put $imageurl = $data->query->pages[0]->imageinfo[0]->thumburl; It is not working