This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function oAuthConfig() { | |
var oAuthConfig = UrlFetchApp.addOAuthService("twitter"); | |
oAuthConfig.setAccessTokenUrl("http://api.twitter.com/oauth/access_token"); | |
oAuthConfig.setRequestTokenUrl("http://api.twitter.com/oauth/request_token"); | |
oAuthConfig.setAuthorizationUrl("http://api.twitter.com/oauth/authorize"); | |
// Register an app at https://dev.twitter.com/apps/new to get the following key and secret | |
oAuthConfig.setConsumerKey("key"); | |
oAuthConfig.setConsumerSecret("secret"); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta http-equiv="content-type" content="text/html; charset=utf-8"/> | |
<title>Add to Google Books</title> | |
<script src="//www.google.com/jsapi"></script> | |
<script src="//apis.google.com/js/client.js"></script> | |
<script type="text/javascript"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
echo "$@" | awk -v ORS="" '{ gsub(/./,"&\n") ; print }' | while read l; | |
do | |
case "$l" in | |
[-_.~a-zA-Z0-9] ) echo -n ${l} ;; | |
"" ) echo -n %20 ;; | |
* ) printf '%%%02X' "'$l" | |
esac | |
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function uploadPdfOcr() { | |
authorize(); | |
var key = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"; // <-- developer key | |
var file = UrlFetchApp.fetch("http://somewhere.com/path/file.pdf").getBlob(); | |
var metadata = { title: file.getName() } | |
var params = {method:"post", | |
oAuthServiceName: "drive", | |
oAuthUseToken: "always", | |
contentType: "application/pdf", | |
contentLength: file.getBytes().length, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function doGet(r) { | |
var translations = []; | |
var e = {error:{code:400}}; | |
try { | |
if(r.parameters.q) { | |
for(var n in r.parameters.q) { | |
translations.push({translatedText: | |
LanguageApp.translate( | |
r.parameters.q[n], | |
(r.parameters.source)?r.parameters.source:null, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function fileAddCommenter() { | |
authorize(); | |
var fileId = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"; // <-- id of the document | |
var key = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"; // <-- developer key | |
var requestBody = { | |
role: "reader", | |
type: "user", | |
value: "[email protected]", | |
additionalRoles: ["commenter"] | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function showDbViewer() { | |
var DbViewer = UiApp.createApplication().setTitle('ScriptDb Viewer'); | |
// Query field and button | |
DbViewer.add( | |
DbViewer.createHorizontalPanel().setVerticalAlignment(UiApp.VerticalAlignment.MIDDLE).add( | |
DbViewer.createTextBox().setText("{}").setId("query").setName("query")) | |
.add( | |
DbViewer.createButton("Query", DbViewer.createServerHandler("queryDb") | |
.addCallbackElement(DbViewer.getElementById("query"))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function authorize_(method) { | |
var oauthConfig = UrlFetchApp.addOAuthService("twitter"); | |
oauthConfig.setAccessTokenUrl("https://api.twitter.com/oauth/access_token"); | |
oauthConfig.setRequestTokenUrl("https://api.twitter.com/oauth/request_token"); | |
oauthConfig.setAuthorizationUrl("https://api.twitter.com/oauth/authorize"); | |
oauthConfig.setConsumerKey(UserProperties.getProperty("CONSUMER_KEY")); | |
oauthConfig.setConsumerSecret(UserProperties.getProperty("CONSUMER_SECRET")); | |
return { | |
oAuthServiceName: "twitter", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function getFeed() { | |
var cache = CacheService.getPublicCache(); | |
var cachedFeed = cache.get("gas-relnotes-feed"); | |
if(cachedFeed == null) { | |
var URL = "https://developers.google.com/apps-script/release_notes"; | |
var feedSize = 25; | |
var data = UrlFetchApp.fetch(URL).getContentText(); | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function oAuthConfig() { | |
var oAuthConfig = UrlFetchApp.addOAuthService("twitter"); | |
oAuthConfig.setAccessTokenUrl("http://api.twitter.com/oauth/access_token"); | |
oAuthConfig.setRequestTokenUrl("http://api.twitter.com/oauth/request_token"); | |
oAuthConfig.setAuthorizationUrl("http://api.twitter.com/oauth/authorize"); | |
// Register an app at https://dev.twitter.com/apps/new to get the following key and secret | |
oAuthConfig.setConsumerKey("PUT CONSUMER KEY HERE"); | |
oAuthConfig.setConsumerSecret("PUT CONSUMER SECRET HERE"); | |
} |