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
#!/usr/bin/env sh | |
# Copyright (c) 2015 Nathan Schulte | |
# set LOGIN and API_KEY below -- | |
# see bottom for example use, in this case, checking and updating the default DNS A RR for a domain | |
# 0: request URI, e.g. '/dns/example.com/listRRs' | |
# 1..n: parameters | |
make_request () { | |
LOGIN='' |
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
#!/usr/bin/env python2 | |
# Author: Chris Dellin <[email protected]> | |
# Date: 2016-09-14 | |
# Updated: Robert Freeman-Day <[email protected]> | |
# Removed extra url bits as per https://github.com/tdryer/hangups/issues/260#issuecomment-247512300 | |
# Script to scrape a working OAuth code from Google | |
# using the approach from dequis | |
# for use with hangups, purple-hangouts, etc. |