Skip to content

Instantly share code, notes, and snippets.

@islandjoe
Created June 15, 2018 07:30
Show Gist options
  • Save islandjoe/279ce395329791e5bb48a4fee5d9fe03 to your computer and use it in GitHub Desktop.
Save islandjoe/279ce395329791e5bb48a4fee5d9fe03 to your computer and use it in GitHub Desktop.
Wikipedia REST API for Alamofire (Swift)
let flowerName = "Morning Glory 
let wikipedia = "https://en.wikipedia.org/w/api.php"
let parameters = [
  "format": "json",
  "action":   "query",
  "prop":       "extracts",
  "exintro":  "",
  "explaintext": "",
  "titles": flowerName,
  "indexpageids": "",
  "redirects": "1"
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment