我需要将我的 AuthSub 代码更改为 oAuth,因为 Google 正在弃用 AuthSub。目前在我的项目中,用户可以创建他的谷歌文档并将其分享给其他具有作家/只读角色的人。
在将 authsub 更改为 oauth 时,我可以使用 oauth 代码创建新文档,但我无法将此文档分享给其他用户。
这是我的 authsub 代码
<?php
$dataShare="<feed xmlns=\"w3.org/2005/Atom\" xmlns:gAcl='schemas.google.com/acl/2007'; xmlns:batch='schemas.google.com/gdata/batch'>; <category scheme='schemas.google.com/g/2005#kind'; term='schemas.google.com/acl/2007#accessRule'/>";;
$dataShare .= "<entry>
<batch:id>1</batch:id>
<batch:operation type='insert'/>
<gAcl:role value='writer' />
<gAcl:scope type='user' value='emailid@gmail.com'/> </entry>";
$dataShare .= "</feed>";
$uri = "docs.google.com/feeds/default/private/full/$newShareDocID/acl/batch";
$headers[]= "Host: docs.google.com";
$headers[]= "GData-Version: 3.0";
$headers[]= "Content-Type: application/atom+xml";
$headers[]= "Authorization: AuthSub token=\"".$_SESSION['docsSampleSessionToken']."\"";
$a = new cURL($headers);
$b = $a->post($uri, $dataShare);
?>
How do I change this sharing code according to oauth. I searched on net but couldn't find anything. Thanks in advance..