I tried to make a gmail contextual gadget, wrote a manifest xml file and a gadget xml file.
Then I entered into google apps page, uploaded the manifest file and clicked on deploy application
.
A new tab opened on the browser, asked for grant data access
. Of course I granted.
Then I was redirected to admin console
page, and in the marketplace apps
I could see that the data access is still not approved. I clicked again on "grant data access" but it affected nothing. The context of the window disappeared, and the next time I entered into marketplace apps it remained as it was.
Why it happened and how can I solve it?
I attach here the manifest code:
<?xml version="1.0" encoding="UTF-8" ?>
<ApplicationManifest xmlns="http://schemas.google.com/ApplicationManifest/2009">
<Name>try13</Name>
<Description>Synchronize Gmail with Tasks</Description>
<Extension id = "RecipientEmailExtractor" type = "contextExtractor">
<Name>Recipient email extractor</Name>
<Url>google.com:RecipientEmailExtractor</Url>
<Param name = "recipient_email" value = ".*"/>
<Triggers ref = "PriorityGmailGadget"/>
<Scope ref = "emailtoAddress"/>
<Container name = "mail"/>
</Extension>
<!-- GADGET -->
<Extension id="PriorityGmailGadget" type="gadget">
<Name>try 13 Gmail Sync Gadget</Name>
<Url>https://gadgetsource.com/google/emptyGadget.xml</Url>
<Container name="mail"/>
</Extension>
<!-- SCOPE -->
<Scope id="emailtoAddress">
<Url>tag:google.com,2010:auth/contextual/extractor/TO_ADDRESS</Url>
<Reason>Find a Priority contact with this email address</Reason>
</Scope>
</ApplicationManifest>