getImageAsStream of PhotosInterface.class (com.Flickr4java.flickr.photos) should use HTTPS · Issue #146 · boncey/Flickr4Java · GitHub
Skip to content

getImageAsStream of PhotosInterface.class (com.Flickr4java.flickr.photos) should use HTTPS #146

Description

@Linus12

The current (v2.12) code for getImageAsStream of PhotosInterface.class (com.Flickr4java.flickr.photos) uses the HTTP protocol when it should use the HTTPS protocol:

    HttpURLConnection conn = (HttpURLConnection) url.openConnection();

It should use

HttpsURLConnection conn = (HttpsURLConnection) url.openConnection();

And the associated include:

import java.net.HttpURLConnection;

should change to:

import java.net.HttpsURLConnection;

Activity

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions