Merge lp:~ken-vandine/account-plugins/lp_1037169 into lp:account-plugins

Proposed by Ken VanDine
Status: Merged
Approved by: Alberto Mardegan
Approved revision: 60
Merged at revision: 60
Proposed branch: lp:~ken-vandine/account-plugins/lp_1037169
Merge into: lp:account-plugins
Diff against target: 18 lines (+3/-3)
1 file modified
src/flickr.vala (+3/-3)
To merge this branch: bzr merge lp:~ken-vandine/account-plugins/lp_1037169
Reviewer Review Type Date Requested Status
Alberto Mardegan (community) Approve
jenkins (community) continuous-integration Approve
Review via email: mp+119765@code.launchpad.net

Description of the change

Use the secure end point for flickr (LP: #1037169)

To post a comment you must log in.
Revision history for this message
jenkins (martin-mrazik+qa) wrote :
review: Approve (continuous-integration)
Revision history for this message
Alberto Mardegan (mardy) wrote :

Works like a charm, thanks!

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'src/flickr.vala'
2--- src/flickr.vala 2012-06-25 19:38:32 +0000
3+++ src/flickr.vala 2012-08-15 19:01:47 +0000
4@@ -29,11 +29,11 @@
5 {
6 var oauth_params = new HashTable<string, GLib.Value?> (str_hash, null);
7 oauth_params.insert ("RequestEndpoint",
8- "http://www.flickr.com/services/oauth/request_token");
9+ "https://secure.flickr.com/services/oauth/request_token");
10 oauth_params.insert ("TokenEndpoint",
11- "http://www.flickr.com/services/oauth/access_token");
12+ "https://secure.flickr.com/services/oauth/access_token");
13 oauth_params.insert ("AuthorizationEndpoint",
14- "http://www.flickr.com/services/oauth/authorize");
15+ "https://secure.flickr.com/services/oauth/authorize");
16 oauth_params.insert ("ConsumerKey", Config.FLICKR_CONSUMER_KEY);
17 oauth_params.insert ("ConsumerSecret", Config.FLICKR_CONSUMER_SECRET);
18 /* According to Flickr documentation, the callback is ignored */

Subscribers

People subscribed via source and target branches