I am in the process of writing a gmail contextual gadget that hooks into gmail to connect it with an external application. I have hit a problem: if the incoming email seems to exceed about 1000 characters, then I seem unable to save a full copy of that email directly to the external app database (there is not problem to save email content that is less than about 1000 characters). Could someone confirm that this is indeed a limitation imposed by Gmail and if so, is there any way to circumvent this limitation?
Asked
Active
Viewed 533 times
0
-
1In the past, I have successfully been able to read beyond 1000 characters from Gmail. Can you please post some code so that we know something else is not wrong – Srik Jan 15 '13 at 04:33
-
Thanks for your reply. I have a custom extractor for the gadget. I then retrieve the values in the Gadget spec using google.contentmatch.getContentMatches(), after having added
:extractorID
1 Answers
0
Yes, there is a 1000 character limit on the data that can be extracted. See the limitations section which states "An extractor can return a maximum of 1,000 characters in each of its output fields".
Also, the troubleshooting sections says "The extracted match must be no more than 1000 characters"

Peter
- 5,501
- 2
- 26
- 42
-
IMO, the extractor only triggers the appearance of the gadget and a custom extractor will not help you overcome the 1000 chars limitation. – koma Apr 10 '13 at 13:32
-
You're correct in that the doc now states you cannot overcome the limitation. I'm not sure what if anything has changed but I have updated my answer. – Peter Apr 11 '13 at 03:21