I would like to query links from This Month in GLAM in Outreach wiki. However, the error message to my query states that "Host outreach.wikimedia.org is not allowed". Can the wiki be allowlisted? Where to do that?
Example:
SELECT ?item ?itemLabel WHERE {
SERVICE wikibase:mwapi {
bd:serviceParam wikibase:api "Generator" .
bd:serviceParam wikibase:endpoint "outreach.wikimedia.org" . #point to the wiki you are searching
bd:serviceParam mwapi:titles "GLAM/Newsletter/January_2022/Contents/AvoinGLAM_report" . #replace here if no QID
bd:serviceParam mwapi:generator "links" .
?item wikibase:apiOutputItem mwapi:item .
?ns wikibase:apiOutput "@ns" .
}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
FILTER (?ns = "0"). #showing only articles
}