I am spending all my time trying to figure out how to reconstruct
various posts to add back the OAuth creditials.
What is going on? Is there some new feature?
I have posted about this in Contacts API and having problems here as
well. OAuth is critical for administrators.
http://code.google.com/p/gdata-issues/issues/detail?id=1654
where someone said: query.setStringCustomParameter
("xoauth_requestor_id", "
us...@example.com");
However I can't do that with ACLs or many of the other methods
aclEntry.delete();
throws: oauth_token does not exist.
I can add a permission:
client.insert(new URL(entry.getAclFeedLink().getHref() + "/?
xoauth_requestor_id=" + account + "@" + CONSUMER_KEY),
aclEntry);
But the similar command:
client.delete(new URL(aclEntry.getEditLink().getHref()), aclEntry);
Does not exist! as in client.delete(arg0, arg1) is not in the API.
I really need to be able to update and delete.