Skip to content

Instantly share code, notes, and snippets.

@jpadilla
Last active August 29, 2015 14:05
Show Gist options
  • Save jpadilla/6dd7810697a49187a499 to your computer and use it in GitHub Desktop.
Save jpadilla/6dd7810697a49187a499 to your computer and use it in GitHub Desktop.
Barrandiando endpoints

https://barrandiando.com/api/v1/bar/create/

{
  "name": "",
  "like": "true",
  "price": "false",
  "service": "false",
  "ambience": "false",
  "facilities": "false",
  "drinks": "false",
  "amenities_credit_card": "false",
  "amenities_outdoor": "false",
  "amenities_music": "false",
  "amenities_parking": "false",
  "amenities_wheelchair": "false",
  "amenities_happyhour": "false",
  "amenities_groups": "false",
  "amenities_tv": "false",
  "amenities_smoking": "false",
  "latitude": 10.0,
  "longitude": 10.0,
  "image": null, // Creo que esto es el binary del image file, si no hay image no lo incluyes
  "comment": "comment text",
  "foursquare_id": 12345, // Esto es el id de foursquare si existe si no es false
  "access_token": "access token de fb",
  "uid": "user id de facebook",
}

https://barrandiando.com/api/v1/bar/review/

{
  "name": "",
  "like": "true",
  "price": "false",
  "service": "false",
  "ambience": "false",
  "facilities": "false",
  "drinks": "false",
  "venue_id": venue.barrandiando_venue_id || venue.id,
  "image": null, // Creo que esto es el binary del image file, si no hay image no lo incluyes,
  "comment": "comment text",
  "access_token": "access token de fb",
  "uid": "user id de facebook",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment