diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-02-03 14:18:01 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-02-03 14:18:01 +0100 |
commit | e69c1b746d63bf794316669471474ab57c8cd40a (patch) | |
tree | 4ee7e39ed76490ca4c07c1f7aab832e4f8dc0421 /plugins/shotwell-publishing/PicasaPublishing.vala | |
parent | a7ff7c49085c320c1e0a2ffb66cc6d283c5acb8e (diff) |
New upstream version 0.25.4upstream/0.25.4
Diffstat (limited to 'plugins/shotwell-publishing/PicasaPublishing.vala')
-rw-r--r-- | plugins/shotwell-publishing/PicasaPublishing.vala | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/shotwell-publishing/PicasaPublishing.vala b/plugins/shotwell-publishing/PicasaPublishing.vala index 621ae12..976ba42 100644 --- a/plugins/shotwell-publishing/PicasaPublishing.vala +++ b/plugins/shotwell-publishing/PicasaPublishing.vala @@ -67,7 +67,7 @@ public class PicasaPublisher : Publishing.RESTSupport.GooglePublisher { public PicasaPublisher(Spit.Publishing.Service service, Spit.Publishing.PluginHost host) { - base(service, host, "http://picasaweb.google.com/data/"); + base(service, host, "https://picasaweb.google.com/data/"); this.publishing_parameters = new PublishingParameters(); load_parameters_from_configuration_system(publishing_parameters); @@ -473,7 +473,7 @@ internal class Album { internal class AlbumDirectoryTransaction : Publishing.RESTSupport.GooglePublisher.AuthenticatedTransaction { - private const string ENDPOINT_URL = "http://picasaweb.google.com/data/feed/api/user/" + + private const string ENDPOINT_URL = "https://picasaweb.google.com/data/feed/api/user/" + "default"; public AlbumDirectoryTransaction(Publishing.RESTSupport.GoogleSession session) { @@ -491,7 +491,7 @@ internal class AlbumDirectoryTransaction : private class AlbumCreationTransaction : Publishing.RESTSupport.GooglePublisher.AuthenticatedTransaction { - private const string ENDPOINT_URL = "http://picasaweb.google.com/data/feed/api/user/" + + private const string ENDPOINT_URL = "https://picasaweb.google.com/data/feed/api/user/" + "default"; private const string ALBUM_ENTRY_TEMPLATE = "<?xml version='1.0' encoding='utf-8'?><entry xmlns='http://www.w3.org/2005/Atom' xmlns:gphoto='http://schemas.google.com/photos/2007'><title type='text'>%s</title><gphoto:access>%s</gphoto:access><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/photos/2007#album'></category></entry>"; |