Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: sitescripts/extensions/bin/createNightlies.py

Issue 6043052758007808: Issue 356 - Fixed auth token used to publish devbuild on the Chrome Web Store (Closed)
Patch Set: Created May 5, 2014, 3:56 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sitescripts/extensions/bin/createNightlies.py
===================================================================
--- a/sitescripts/extensions/bin/createNightlies.py
+++ b/sitescripts/extensions/bin/createNightlies.py
@@ -390,12 +390,14 @@
])
))
+ auth_token = '%s %s' % (response['token_type'], response['access_token'])
+
# upload a new version with the Chrome Web Store API
# https://developer.chrome.com/webstore/using_webstore_api#uploadexisitng
request = urllib2.Request('https://www.googleapis.com/upload/chromewebstore/v1.1/items/' + self.config.devbuildGalleryID)
request.get_method = lambda: 'PUT'
- request.add_header('Authorization', '%s %s' % (response['token_type'], response['access_token']))
+ request.add_header('Authorization', auth_token)
request.add_header('x-goog-api-version', '2')
with open(self.path, 'rb') as file:
@@ -418,7 +420,7 @@
request = urllib2.Request('https://www.googleapis.com/upload/chromewebstore/v1.1/items/%s/publish' % self.config.devbuildGalleryID)
request.get_method = lambda: 'POST'
- request.add_header('Authorization', '%s %s' % (response['token_type'], response['access_token']))
+ request.add_header('Authorization', auth_token)
request.add_header('x-goog-api-version', '2')
request.add_header('Content-Length', '0')
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld