Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
home:Alexander_Naumov:SLE-12:Update
shotwell.1055
0001-Shotwell-flickr-api-change-fix.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File 0001-Shotwell-flickr-api-change-fix.patch of Package shotwell.1055
From ead3a6f75c001059980cc4a2c287feb0622f3c89 Mon Sep 17 00:00:00 2001 From: Joseph Bylund <joseph.bylund@gmail.com> Date: Mon, 30 Jun 2014 13:53:20 -0700 Subject: Fix Flickr publishing (now HTTPs only): Bug #732432 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; -- cgit v0.10.2
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor