无法使用 ThyBAG 将附件添加到共享点列表 api

unable to add attachment to sharepoint list using ThyBAG api

环境:Linux
后端:Drupal/PHP.
Sharepoint API 正在使用中:https://github.com/thybag/PHP-SharePoint-Lists-API/

我已经使用 WSDL 文件成功建立了与共享点的连接。我可以使用上面的 API 插入、删除和更新列表。但我无法向列表项添加附件。我尝试使用 API 函数 (addAttachment),但它抛出以下错误 -

"Caught exception: Error (soap:Server) Exception of type 'Microsoft.SharePoint.SoapServer.SoapServerException' was thrown.,more=Detailed: The security validation for this page is invalid. Click Back in your Web browser, refresh the page, and try your operation again."

如果有人遇到同样的问题,请告诉我。

谢谢。

我得到了上述问题的解决方案。问题出在这个文件

PHPSharePointListsAPI/src/Thybag/Auth/SharePointOnlineAuth.php on line 22

只需将第 22 行替换为以下代码:-

$headers = array('SOAPAction: "' . $action . '"');

希望对那些多年来一直坚持使用它的人有所帮助..:P