Skip to content

Commit

Permalink
Merge pull request #9 from pidgpowell/patch-1
Browse files Browse the repository at this point in the history
Flickr API now uses HTTPS only
  • Loading branch information
pocket7878 committed Aug 10, 2014
2 parents 1e0dee7 + 61066fa commit 60f2962
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions FlickrStrategy.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ class FlickrStrategy extends OpauthStrategy {
'method' => 'POST',
'perms' => 'read',
'oauth_callback' => '{complete_url_to_strategy}oauth_callback',
'authorize_url' => 'http://www.flickr.com/services/oauth/authorize',
'request_token_url' => 'http://www.flickr.com/services/oauth/request_token',
'access_token_url' => 'http://www.flickr.com/services/oauth/access_token',
'flickr_profile_url' => 'http://api.flickr.com/services/rest?format=json',
'authorize_url' => 'https://www.flickr.com/services/oauth/authorize',
'request_token_url' => 'https://www.flickr.com/services/oauth/request_token',
'access_token_url' => 'https://www.flickr.com/services/oauth/access_token',
'flickr_profile_url' => 'https://api.flickr.com/services/rest?format=json',
);

/**
Expand Down

2 comments on commit 60f2962

@Anahkiasen
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we get a new release with this fix?

@pocket7878
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry for my late reply.. I've just released new version!

Please sign in to comment.