Skip to content

Instantly share code, notes, and snippets.

@tatey
Created May 3, 2012 13:41
Show Gist options
  • Select an option

  • Save tatey/2585725 to your computer and use it in GitHub Desktop.

Select an option

Save tatey/2585725 to your computer and use it in GitHub Desktop.
Desktoppr
uhoh({"response":{"id":465,"bytes":450036,"created_at":"2012-04-22T22:24:29Z","image":{"url":"http://assets.desktoppr.co/wallpapers/3684af1ebd0380eb6acd669cf87ef9eb1e31c122/20080502_3dz_wallpapers_ru_vtorzhenie_2_1280x1024__130529_wp.jpg","thumb":{"url":"http://assets.desktoppr.co/wallpapers/3684af1ebd0380eb6acd669cf87ef9eb1e31c122/thumb_20080502_3dz_wallpapers_ru_vtorzhenie_2_1280x1024__130529_wp.jpg"},"preview":{"url":"http://assets.desktoppr.co/wallpapers/3684af1ebd0380eb6acd669cf87ef9eb1e31c122/preview_20080502_3dz_wallpapers_ru_vtorzhenie_2_1280x1024__130529_wp.jpg"}},"height":1024,"width":1280,"user_id":26,"user_count":5,"views_count
@tatey
Copy link
Author

tatey commented May 3, 2012

When I make a request with a callback parameter:

https://api.desktoppr.co/1/users/keithpitt/wallpapers/random?callback=uhoh

I get:

javascript
uhoh({"response":{"id":465,"bytes":450036,"created_at":"2012-04-22T22:24:29Z","image":{"url":"http://assets.desktoppr.co/wallpapers/3684af1ebd0380eb6acd669cf87ef9eb1e31c122/20080502_3dz_wallpapers_ru_vtorzhenie_2_1280x1024__130529_wp.jpg","thumb":{"url":"http://assets.desktoppr.co/wallpapers/3684af1ebd0380eb6acd669cf87ef9eb1e31c122/thumb_20080502_3dz_wallpapers_ru_vtorzhenie_2_1280x1024__130529_wp.jpg"},"preview":{"url":"http://assets.desktoppr.co/wallpapers/3684af1ebd0380eb6acd669cf87ef9eb1e31c122/preview_20080502_3dz_wallpapers_ru_vtorzhenie_2_1280x1024__130529_wp.jpg"}},"height":1024,"width":1280,"user_id":26,"user_count":5,"views_count


Missing trailing brace and parenthesis. I expect it to be:

``` javascript
uhoh({"response":{"id":465,"bytes":450036,"created_at":"2012-04-22T22:24:29Z","image":{"url":"http://assets.desktoppr.co/wallpapers/3684af1ebd0380eb6acd669cf87ef9eb1e31c122/20080502_3dz_wallpapers_ru_vtorzhenie_2_1280x1024__130529_wp.jpg","thumb":{"url":"http://assets.desktoppr.co/wallpapers/3684af1ebd0380eb6acd669cf87ef9eb1e31c122/thumb_20080502_3dz_wallpapers_ru_vtorzhenie_2_1280x1024__130529_wp.jpg"},"preview":{"url":"http://assets.desktoppr.co/wallpapers/3684af1ebd0380eb6acd669cf87ef9eb1e31c122/preview_20080502_3dz_wallpapers_ru_vtorzhenie_2_1280x1024__130529_wp.jpg"}},"height":1024,"width":1280,"user_id":26,"user_count":5,"views_count":8}})

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment