Skip to content

Library to simplify Google Cloud Print calls

License

Notifications You must be signed in to change notification settings

floriansollami/node-gcp

This branch is 7 commits behind brickclick/node-gcp:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ba1926e · Apr 13, 2018

History

10 Commits
Nov 26, 2015
May 26, 2017
Apr 10, 2018
Apr 13, 2018

Repository files navigation

Google Cloud Print for Node.js

Library to simplify Google Cloud Print calls

Usage

You will need to set-up a Google Cloud Application, which will grant you an API client ID and secret. You will also need to have an http server capable of handling an OAuth endpoint/flow, and have your URLs registered for your API endpoints. You can do this here: https://console.cloud.google.com/apis/credentials

Get Authorization codes by redirecting your user to:

https://accounts.google.com/o/oauth2/auth
	?response_type=code
	&scope=profile%20https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fcloudprint
	&approval_prompt=force
	&access_type=offline
	&client_id=<your client id>
	&redirect_uri=<your redirect URI>

Once a user completes the OAuth process, they will be returned to your redirect URI, with a code that you can exchange for access and refresh tokens.

var promiseRequest = require('request-promise');
return promiseRequest({
	method: 'POST',
	url:'https://www.googleapis.com/oauth2/v3/token',
	form: {
		code: <authorization code from oauth>,
		redirect_uri: <your redirect URI>,
		client_id: <your client id>,
		client_secret: <your client secret>,
		grant_type: 'authorization_code'
	}
});

At this point you can now start making API calls

var CloudPrint = require('node-gcp');
var printClient = new CloudPrint({
	clientId: <your client id>,
	clientSecret: <your client secret>,
	accessToken: <access token from exchange>,
	refreshToken: <refresh token from exchange>
});

printClient.getPrinters()
	.then(function(printers){
	 	console.log(printers);
	});
printClient.print('printer_id', 'print me!', 'text/plain');

About

Library to simplify Google Cloud Print calls

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%