[shotwell/shotwell-0.18: 4/4] Fix Flickr publishing (now HTTPs only): Bug #732432
- From: Jim Nelson <jnelson src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [shotwell/shotwell-0.18: 4/4] Fix Flickr publishing (now HTTPs only): Bug #732432
- Date: Mon, 30 Jun 2014 21:59:13 +0000 (UTC)
commit 96e010ca031ea50b1654e99ef626de5911c0110c
Author: Joseph Bylund <joseph bylund gmail com>
Date: Mon Jun 30 13:53:20 2014 -0700
Fix Flickr publishing (now HTTPs only): Bug #732432
plugins/shotwell-publishing/FlickrPublishing.vala | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/plugins/shotwell-publishing/FlickrPublishing.vala
b/plugins/shotwell-publishing/FlickrPublishing.vala
index 239c1d2..dc483cc 100644
--- a/plugins/shotwell-publishing/FlickrPublishing.vala
+++ b/plugins/shotwell-publishing/FlickrPublishing.vala
@@ -61,7 +61,7 @@ internal const string SERVICE_WELCOME_MESSAGE =
_("You are not currently logged into Flickr.\n\nClick Login to log into Flickr in your Web browser. You
will have to authorize Shotwell Connect to link to your Flickr account.");
internal const string RESTART_ERROR_MESSAGE =
_("You have already logged in and out of Flickr during this Shotwell session.\nTo continue publishing to
Flickr, quit and restart Shotwell, then try publishing again.");
-internal const string ENDPOINT_URL = "http://api.flickr.com/services/rest";;
+internal const string ENDPOINT_URL = "https://api.flickr.com/services/rest";;
internal const string API_KEY = "60dd96d4a2ad04888b09c9e18d82c26f";
internal const string API_SECRET = "d0960565e03547c1";
internal const int ORIGINAL_SIZE = -1;
@@ -414,7 +414,7 @@ public class FlickrPublisher : Spit.Publishing.Publisher, GLib.Object {
}
private void do_launch_system_browser(string token) {
- string login_uri = "http://www.flickr.com/services/oauth/authorize?oauth_token="; + token +
+ string login_uri = "https://www.flickr.com/services/oauth/authorize?oauth_token="; + token +
"&perms=write";
debug("ACTION: launching system browser with uri = '%s'", login_uri);
@@ -844,14 +844,14 @@ internal class Transaction : Publishing.RESTSupport.Transaction {
internal class AuthenticationRequestTransaction : Transaction {
public AuthenticationRequestTransaction(Session session) {
- base.with_uri(session, "http://www.flickr.com/services/oauth/request_token";,
+ base.with_uri(session, "https://www.flickr.com/services/oauth/request_token";,
Publishing.RESTSupport.HttpMethod.GET);
}
}
internal class AccessTokenFetchTransaction : Transaction {
public AccessTokenFetchTransaction(Session session, string user_verifier) {
- base.with_uri(session, "http://www.flickr.com/services/oauth/access_token";,
+ base.with_uri(session, "https://www.flickr.com/services/oauth/access_token";,
Publishing.RESTSupport.HttpMethod.GET);
add_argument("oauth_verifier", user_verifier);
add_argument("oauth_token", session.get_request_phase_token());
@@ -873,7 +873,7 @@ private class UploadTransaction : Publishing.RESTSupport.UploadTransaction {
public UploadTransaction(Session session, PublishingParameters parameters,
Spit.Publishing.Publishable publishable) {
- base.with_endpoint_url(session, publishable, "http://api.flickr.com/services/upload";);
+ base.with_endpoint_url(session, publishable, "https://api.flickr.com/services/upload";);
this.parameters = parameters;
this.session = session;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]