I use Flickr to load images into my app using the Picasso library. It was working up until about 2 months ago with no issue. I have not changed anything in my code having to do with images since it was working. I have a feeling Flickr changed something on their end but it makes no sense because the first image loads and none of the rest.
I get this error:
com.squareup.picasso.NetworkRequestHandler$ResponseException: HTTP 503
I really don't think this is my code but here is a snippet:
Picasso.get()
.load(FlickrDirectURL)
.placeholder(R.drawable.XXXXX)
.error(R.drawable.XXXXX)
.into(Picture, new Callback()
{
@Override
public void onSuccess(){}
@Override
public void onError(Exception e)
{
Log.e("Picasso",""+e);
}
});
Any help would be greatly appreciated. Even a direction to go would help. Thanks!