Google Cloud Print is built on the idea that printing can be more intuitive, accessible, and useful. Using Google Cloud Print you can make your printers available to you from any Google Cloud Print enabled web, desktop or mobile app.

learn more… | top users | synonyms

0
votes
0answers
13 views

Unsharing printer with Google Cloud Print

I am able to programmatically share a printer with /share and list the results with /printer. Is there an api available for unsharing the printer with users?
0
votes
0answers
22 views

Google Cloud Print in Actionscript

I'm working on getting GCP to be utilized within an AS3 project. I can get OAuth codes and Printers but each time I submit a document I get a 409 Error - Invalid Content OR 412 - Missing Document. ...
1
vote
1answer
33 views

Can I access Cloud Print JSON interface from Google Apps Script?

stackoverflowers :) What I want to do is to access to the Cloud Print JSON interface via a Google Apps Script. I now that I need to get an authorization token but, when I try to invoke ...
0
votes
0answers
49 views

Google cloudprint with google-php-api-client Oauth2 and curl returns 403 error while trying to cronjob

I first used the following script to show all available printers (and I then obtained the refresh token from this script): <?php require_once 'XXX/Google_Client.php'; session_start(); $client ...
0
votes
0answers
50 views

Printer status showing 'offline' after registering to Google cloud print

I am working on server side (Receiving print jobs to printer); I am following the developers guide mentioned as "https://developers.google.com/cloud-print/docs/devguide#registering" I am able to ...
-1
votes
1answer
51 views

How can I create a PDF programmatically in iOS [duplicate]

I want to create a pdf with some labels and a image and a table with set of rows in iOS programmatically. Please suggest some idea about this. How can I enable it for Google cloud priniting in ios ...
0
votes
0answers
34 views

Google cloud print Document Missing

What is document missing error in google cloud print for android? I am searching for solutions but not yet found.. Kindly help me.. final Uri docUri = Uri.parse("/mnt/sdcard/downloads"); final ...
0
votes
0answers
64 views

iText / Cloud Print not working on Android

I'm trying to generate a simple PDF and have it passed over to Google Cloud Print, but nothing happens when I try printing the PDF to my google drive. (Login works) How would I even authenticate that ...
1
vote
1answer
70 views

Google Cloud Print: How long is the token good for (to submit jobs to cloud print)?

If my user uses oauth v2 to cloud print to get a credential, how do I get a credential that is good for at least 48 hours? We need to be able to get access to the printer, and keep it for some days. ...
1
vote
0answers
83 views

Android Google cloud print not working with large files

I'm trying to print a pdf file using sample provided here. I managed to make it work with some pdf files. The problem is that when I want to print big file (around 17MB), I'm getting 03-19 ...
0
votes
0answers
98 views

How to use gtm-oauth2 to submit/print on Google Cloud Print

I am trying to use gtm-oath2 with Google Cloud Print on iOS devices. The authentication seems fine, I can login, logout and search printers using GET (default): NSMutableURLRequest *request = ...
1
vote
1answer
168 views

Android Google Cloud Print - Document missing

I want to print from my android application to the printer I registered with Google cloud print. But every time I tried printing the web page, I always got the document missing error. This is my code ...
0
votes
0answers
147 views

Printing: Cloud, PHP, PDF, Javascript, Silent, FTP, Remote Print Queue, Shell Script

I have this awesome solution for cloud printing. I just realized there might be a 'bug' that can cause a dropped job or incomplete data. In the shell script ftp portion of the process there is an mget ...
1
vote
1answer
100 views

access token for google cloud print service

I want to use google cloud print service for my application, Concept is : Buyer can purchase products from my site and he should send order list to supplier's printer. For this, Supplier should ...
0
votes
0answers
124 views

Google Cloud Print WebView example doesn't work

I setup correctly my printer, printing works from third party app. But I want to print from my own android application. I tied the official tutorial: ...
9
votes
2answers
710 views

Using the Google Cloud Print API with Android

I am working on an android application that needs to print to a printer. I decided on using the Google Cloud Print, as it seemed easy to set up. Initially, I followed the steps found here for ...
0
votes
0answers
139 views

How to add google cloud print in phonegap for hybrid android app?

I am developing a hybrid app for android using phonegap. I am in need of adding print functionality to print the html content. After making many google search I found that we can use google cloud ...
3
votes
0answers
111 views

Print doesnt work in webview of android and iOS

I am using the Google Cloud print to in my web application to print the documents. When i run the app in the web browser it works fine.. <script ...
0
votes
0answers
147 views

Google-Cloud-Print -> printing with G-Drive ID (using GWT)

"No Data" when Printing to Google cloud Print: var gadget = new $wnd.cloudprint.Gadget(); gadget.setPrintButton($wnd.cloudprint.Gadget ...
1
vote
1answer
121 views

Why the barcode scanner code being used in google cloud print integration code?

The Google cloud print integration code at https://developers.google.com/cloud-print/docs/android uses the zxing barcode scanner code as well. Please refer: public boolean ...
1
vote
1answer
169 views

How to print Android activity display using cloud print

I am trying to implement Google Cloud Print into an app, following the Integration Guide. I'm trying to keep it basic by just printing out google.com. When clicking the print button I created, it ...
1
vote
0answers
250 views

Google Cloud Print Web Element works but not on Google Chrome for iOS

I use GCP Web Element to post items to print on my web application, here's the code Google suggests... JavaScript <script src="http://www.google.com/cloudprint/client/cpgadget.js"> ...
2
votes
2answers
508 views

Google cloud print. how to submit valid capabilities?

When i sending a printer job without capabilities, it's work and print: <?php $url = "http://www.google.com/cloudprint/submit?printerid=" . $printer_id . &output=json"; $post = array( ...
2
votes
0answers
242 views

Google cloud print - print multiple copies

I have a problem with google cloud print api. I can't find an example for adding capabilities to a a printer (specifically multiple copies to a printer LaserJet Pro P1102w). I used ...
0
votes
0answers
223 views

Android Integration Cloud Printer Crash?

I am trying to run Android GCP Integration code and it got crashed.I think it fails at this point.Return type problem is there or something else ?? Any Help or Suggestion would b appreciated public ...
2
votes
4answers
1k views

Any Cloud Print API For ANDROID

Does anyone know if there is a Cloud print API for Android? .To develop our own Cloud print Apk for Android device. Any tutorial or Sample code for this will b helpful
2
votes
0answers
351 views

Java Example using Google Cloud Print

I have a small java server based app to which I would like to add Google Cloud Print functionality. Before I go off and use HTTP requests I thought it would be wise to see if anybody knows of a good ...
3
votes
2answers
850 views

How to print a WebView?

My Android app renders a WebView containing a canvas. Cloud Print wants a PDF. How can I generate a PDF with my WebView to send to Cloud Print?
0
votes
1answer
231 views

Web page to Uri?

I'm working on getting Google Cloud Print into my Android app, but I don't quite get Uri's and MimeTypes, making it difficult for me to figure out where I'm going wrong. I want to print an array of ...
0
votes
3answers
552 views

Android - Eclipse - What does docUri mean?

I am working through this tutorial https://developers.google.com/cloud-print/docs/android for google cloud print. I am trying to add a print functionality to my application. However I have NO IDEA ...
3
votes
1answer
1k views

Eclipse - Printing via Google Cloud Print

I am trying to print a .txt file that my application saves via FileWriter. The file it saves is /sdcard/StudentLatePass.txt When the print button is clicked, the SD file is saved and then it needs ...
2
votes
0answers
510 views

Working with Google Cloud Print

I have begun digging around in the Google Cloud Print project in hopes of creating a custom application for my network. I have a Windows Print Server running with a printer queue I wish to submit ...
2
votes
1answer
586 views

Eclipse - Print report from app with Google Cloud Print

I am developing an android application in eclipse to print a report via Google Cloud Print. This tutorial from Google has me on the right track. I have already installed itext to generate the ...
2
votes
0answers
229 views

Access Google Cloud Print in android in simple way [closed]

Is there any way to access Google Cloud Print in android? Provide any reference tutorial or link for that, Thanks
3
votes
1answer
408 views

Access Google Cloud Print in android [closed]

Is there any way to access Google Cloud Print in android? Provide any reference tutorial or link for that, Thanks
0
votes
1answer
178 views

Google Cloud Print - Python Code Sample - GaiaLogin returns None

Anyone got it to work? https://code.google.com/intl/de-DE/apis/cloudprint/docs/pythonCode.html GaiaLogin returns None :(
0
votes
1answer
527 views

How to convert PrintCapabilities to ?XPS (XML Paper Specification) or PPD (Postscript Printer Description) formats

I started to develop Cloud Printer using Google Cloud Print interface via C# framework 4.0 a few days ago. This url is the interface introduction of google cloud print. ...
4
votes
2answers
2k views

PHP Printing with Google Cloud Print

I am currently adding the ability to a php back-end system to allow it to print directly and I am trying to get things working with Google's Cloud Print. Imagine the app as an online shopping cart and ...
1
vote
1answer
374 views

Customize google cloud print button function

Currently i am using the google cloudprint button for my site <script src="//www.google.com/cloudprint/client/cpgadget.js"></script> <script defer="defer"> var gadget = new ...
0
votes
1answer
235 views

GCP Web Element on Android Browser

I integrated GCP on a project of mine so i can use a mobile/android browser to print. Code that i used is similar to the code below: <script ...
0
votes
2answers
1k views

Print to Google Cloud Print with dynamic URL

I'd like a "print" button on my web-site to print a document with Google Cloud Print, but I want the "url" of the target – a PDF file – to change dynamically, after the button has been clicked ...
3
votes
3answers
2k views

Google Cloud Print using C#

I try to use Google Cloud Print using C#. Internet has just one example, who wrote Josh Goebel. I will not publish the complete example, here is the only method that sends a file to print: public ...
1
vote
3answers
816 views

Print from server directly to Google Cloud Print on Google App Engine

I don't know if it's possible or practical yet, but if it is: How can one print to a printer using Google Cloud Print from a python application running on Google App Engine? For the purposes of an ...