在 cakephp 应用程序中包含 gigya sdk 时出现问题
我正在尝试将 gigya php sdk 包含在我的应用程序中。该文件位于 /app/vendors/GSSDK.php 下,我将其包含在我的控制器中,
App::import('Vendor', 'GSSDK');
在我看来,
$request = new GSRequest($apiKey,$secretKey,$method);
我收到缺少类 GSRequest 的错误。我面临包括 php sdk 在内的问题。
I am trying to include gigya php sdk in my application. The file is under /app/vendors/GSSDK.php I included it in my controller as
App::import('Vendor', 'GSSDK');
And in my view
$request = new GSRequest($apiKey,$secretKey,$method);
I get a error missing class GSRequest. I am facing problems including the php sdk.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
确保将供应商文件包含到正确的目录
/vendors/
或/app/vendors
中,两者都应该可以工作。尝试包含 book cakephp 建议的不同样式,并记住 CASE 很重要。Make sure you include vendor files into the correct directory
/vendors/
or/app/vendors
both should work. Try including with different styles as sugguested by book cakephp and remember CASE does matter.