Tuesday, March 10, 2015
Publish your scripts to the Apps Script Gallery
An important new feature of Apps Script is a script gallery, where developers can easily publish their scripts to make them accessible to everyone. You can find the gallery by going to Insert and then selecting Script...in any Google spreadsheet.
Recently, the Google Apps team in New York put together a Movie Night script to help us easily figure out which movies were playing nearby and vote for our favorites - you can read more about it here. Let’s take a closer look at how the script works and how we published it to the new Apps Script Gallery.
We start by bringing up the script editor from a spreadsheet (Tools -> Scripts -> Script editor...).
The first step is to fetch a list of movies playing in a given area at a given time. We use the Google search results for a movie query as follows:
varresults = UrlFetchApp.fetch(http://www.google.com/movies?hl=en&near=+
zipcode +&dq=movies&sort=1).getContentText();
vardoc = Xml.parse(results,true);
We can then use Apps Script’s handy Xml service to parse the results. The next step is to send an email to our friends asking them to vote. This is the slightly tricky part:
- In the spreadsheet, select Form -> Create a form to open the form creation window.
- Add two questions, one titled “Movie”, and the other “Attendee” - we don’t care too much about any other text as it will all be replaced by the script at run-time.
- Close the form creation window.
- In the spreadsheet, select Form -> Go to live form, and copy the ‘formkey’ parameter from the address bar.
- Open the script in the editor, and insert the ‘formkey’ into line 2 of the script.
Phew! That was the tricky part. In summary, we just created a form for the spreadsheet, but instead of using that form directly, we’re going to use a form that is dynamically generated by the script. However, we still need the special key to correctly route submissions to the spreadsheet (and to validate those submissions).
After that, we can put together a list of recipients by calling the contacts service and reading the Gmail ‘Friends’ group:
varcontactGroup = ContactsApp.findContactGroup(’System Group: Friends’);
varpeople = contactGroup.getContacts();
Lastly, we put the movie thumbnails and descriptions in the email body - tailored to each recipient, so that we’ll know who voted:
varemailBody = "";
for(variinmovies) {
// add the image, title etc to emailBody (as HTML)
}
varaddresses = getFriends_();
for(variinaddresses) {
var email = email_header + form_key + emailBody + email_footer;
MailApp.sendEmail(addresses[i],"Movie tonight?", "", {htmlBody: email});
}
Check out the documentation and get started building your scripts - we look forward to seeing your gallery submissions. To share your masterpiece with the world, select Share -> Publish Script...from the script editor - its that easy!
![](http://lh5.ggpht.com/_EoPQ4P1oLoU/S5cF4qQbuYI/AAAAAAAAABs/X9sFxw4ThGg/s400/Picture%205.png)
Also, for those attending Google I/O this year, be sure check out the Google Apps Script talk on the Enterprise track.
Posted by Nikhil Singhal, Google Apps Script Engineer
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.