pecl oauth - 请求引擎问题
我正在尝试使用 pecl oauth,
$oauth = new OAuth($conskey,$conssec,OAUTH_SIG_METHOD_HMACSHA1,OAUTH_AUTH_TYPE_URI);
但是当调用时,
$oauth->setRequestEngine(OAUTH_REQENGINE_CURL)
我收到一条警告,常量 OAUTH_REQENGINE_CURL 是字符串而不是 int。
用于设置引擎 OAUTH_REQENGINE_CURL 的另一个常量是一个整数。
这是一个错误吗?我错过了什么吗?
使用 php 5.3.5 和 pecl-oauth v1.2
OAUTH_REQENGINE_CURL 未定义为常量。
尽管在文件 php_auth.c 中,以下几行定义了 2 个引擎
Define OAUTH_REQENGINE_STREAMS 1
Define OAUTH_REQENGINE_CURL 2
谢谢,
I am trying to use pecl oauth
$oauth = new OAuth($conskey,$conssec,OAUTH_SIG_METHOD_HMACSHA1,OAUTH_AUTH_TYPE_URI);
but when a call to
$oauth->setRequestEngine(OAUTH_REQENGINE_CURL)
i am getting a warning that constant OAUTH_REQENGINE_CURL is a string and NOT an int.
The other constant used to set the engine OAUTH_REQENGINE_CURL is an integer.
Is this a bug? Have i missed something?
Using php 5.3.5 and pecl-oauth v1.2
OAUTH_REQENGINE_CURL is not defined as a constant.
Although in file php_auth.c the following lines define the 2 engines
define OAUTH_REQENGINE_STREAMS 1
define OAUTH_REQENGINE_CURL 2
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论