|
|
(23 intermediate revisions by the same user not shown) |
Line 1: |
Line 1: |
| == Strapi Events Raw JSON ==
| |
|
| |
| <!-- 1) Fetch the data with #get_web_data -->
| |
| {{#get_web_data: | | {{#get_web_data: |
| |url = https://unitapedia.univ-unita.eu/strapi/api/mobilities?populate=mobilities,SupplementaryInfo Authorization: Bearer 9e4767b7494f7b636d5c1104e0c9a1145723b1f3aed80c9d02803bea35331c4967431daa9dc87b0d1fbd4cd849b39430f1f33463e2efa3e0e264a4f71c06f88eabcf1fd65885678af5d3c2be08e8545e03513b8ebe86851d2fead8ee217626587fb7602153732d10508e4a996f45ba0b728814ef71ca7dae635b4acea0029a60 | | |url = https://unitapedia.univ-unita.eu/strapi/api/public-disseminations?populate=*,Dissemination.social-media |
| |format = json | | |format = json |
| | |data = |
| | DisseminationID = id, |
| | EntryDate = EntryDate, |
| | Platform = platform, |
| | Views = views, |
| | GainedFollowers = gained_followers, |
| | Followers = followers, |
| | Activities = activities |
| |debug = 1 | | |debug = 1 |
| }} | | }} |
|
| |
|
| <!-- 2) Display the raw JSON output --> | | <!-- Store each dissemination as a subobject --> |
| == Raw JSON Output ==
| | {{#store_external_table: StrapiPublicDissemination |
| {{#external_data_debug}} | | |DisseminationID = {{{DisseminationID}}} |
| | | |EntryDate = {{{EntryDate}}} |
| == Strapi Events Display == | | |Platform = {{{Platform}}} |
| | | |Views = {{{Views}}} |
| <!-- 1) Fetch the data with #get_web_data -->
| | |GainedFollowers = {{{GainedFollowers}}} |
| {{#get_web_data: | | |Followers = {{{Followers}}} |
| |url = https://unitapedia.univ-unita.eu/strapi/api/mobilities?populate=mobilities,SupplementaryInfo | | |Activities = {{{Activities}}} |
| |format = json | |
| |data = | |
| EventID = id,
| |
| CreatedAt = createdAt,
| |
| UpdatedAt = updatedAt,
| |
| PublishedAt = data.1.attributes.publishedAt,
| |
| EventType = data.1.attributes.events.1.Type,
| |
| Participants = data.1.attributes.events.1.Participants,
| |
| Certificate = data.1.attributes.events.1.Certificate,
| |
| Category = data.1.attributes.events.1.Category,
| |
| EventDate = data.1.attributes.events.1.Date,
| |
| Publication = data.1.attributes.SupplementaryInfo.1.Publication,
| |
| Seminars = data.1.attributes.SupplementaryInfo.1.Seminars,
| |
| Workshops = data.1.attributes.SupplementaryInfo.1.Workshops
| |
| |debug = 1 | |
| }} | | }} |
|
| |
|
| <!-- 2) Display the data --> | | <!-- Query and display all dissemination records in a table --> |
| {{#if:{{#external_value:EventID}} | | | {{#ask: [[-Has subobject::{{FULLPAGENAME}}]] |
| === Event Details ===
| | |?DisseminationID |
| * **Event ID:** {{#external_value:EventID}}
| | |?EntryDate |
| * **Created At:** {{#external_value:CreatedAt}}
| | |?Platform |
| * **Updated At:** {{#external_value:UpdatedAt}}
| | |?Views |
| * **Published At:** {{#external_value:PublishedAt}}
| | |?GainedFollowers |
| | | |?Followers |
| * **Type:** {{#external_value:EventType}}
| | |?Activities |
| * **Participants:** {{#external_value:Participants}}
| | |format=table |
| * **Certificate:** {{#external_value:Certificate}}
| | |class=datatable |
| * **Category:** {{#external_value:Category}}
| | |format=datatables |
| * **Date:** {{#external_value:EventDate}}
| | |mainlabel=- |
| | | |header=show |
| * **Publication:** {{#external_value:Publication}}
| |
| * **Seminars:** {{#external_value:Seminars}}
| |
| * **Workshops:** {{#external_value:Workshops}}
| |
| | | |
| * **Error:** Unable to retrieve event data. Check the debug output below.
| |
| }} | | }} |
|
| |
| == Debug Output ==
| |
| {{#external_data_debug}}
| |
|
| |
|
| |
| [[User:Clément Combier|LCC]] ([[User talk:Clément Combier|talk]]) 14:27, 28 May 2024 (UTC)
| |