1

everything seems to work in my app, but the "blank" avater, 4sq returns https://irs0.4sqi.net/img/user/blank_boy.png but that link is broken... I am using the latest version of the API. has anyone found a fix for this?

photo =     {
    prefix = "https://irs0.4sqi.net/img/user/";
    suffix = "/blank_boy.png";
};

(that's the response from the server)

thanks

raulriera
  • 714
  • 10
  • 28
  • 1
    Check out http://stackoverflow.com/questions/10977100/foursquare-api-for-venue-user-image-error/10981046#10981046 has 2 answers that solve this problem – Jonathan Levison Aug 18 '12 at 09:24

1 Answers1

11

As pointed by the comment from @Jonathan Levison you need to specify the "dimensions" between the prefix and suffix values. For example

https://irs0.4sqi.net/img/user/100x100/blank_boy.png
raulriera
  • 714
  • 10
  • 28