免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1282 | 回复: 2
打印 上一主题 下一主题

有谁对e-gold和curl比较熟悉的,请教!!! [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2004-12-26 21:26 |只看该作者 |倒序浏览
在使用e-gold的自动支付功能编写自动支付的游戏程序时,在使用curl进行https连接post数据时出现问题,请教各位高手。
        function _MakeSpend($from, $frompass, $to, $amount, $memo) {
                $memo = str_replace(" ","%20",$memo);
                $addr = "https://www.e-gold.com/acct/confirm.asp?AccountID=" . $from . "&assPhrase=" . $frompass . "&ayee_Account=" . $to . "&Amount=". $amount ."&AY_IN=1&WORTH_OF=Gold&Memo=". $memo . "&IGNORE_RATE_CHANGE=y&AYMENT_ID=1";
                $ch = curl_init($addr);
                curl_setopt($ch, CURLOPT_USERAGENT,"Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)";
                curl_setopt($ch, CURLOPT_RETURNTRANSFER,0);
                curl_setopt($ch, CURLOPT_HEADER, 0);
                $fp = tmpfile();
                curl_setopt ($ch, CURLOPT_FILE, $fp);
                $result = curl_exec($ch);
                curl_close($ch);
                fseek($fp,0,SEEK_SET);
                while(!feof($fp)) $result.=fread($fp,1024);
                fclose($fp);
                $result = strtolower($result);
                $result = strstr($result,"your batch number for confirmation is ";
                $result = substr($result,51,;
                return $result;//回传batch number
        }

论坛徽章:
1
技术图书徽章
日期:2013-12-05 23:25:45
2 [报告]
发表于 2004-12-27 14:45 |只看该作者

有谁对e-gold和curl比较熟悉的,请教!!!

所谓的出现问题,你也要分析一下子,除什么问题,问题的现象是什么?

指望完全靠别人来分析,交钱先说

论坛徽章:
0
3 [报告]
发表于 2004-12-27 17:22 |只看该作者

有谁对e-gold和curl比较熟悉的,请教!!!

在使用curl进行Post提交数据时出错,
HTTP Error 405
405 Method Not Allowed

The method specified in the Request Line is not allowed for the resource identified by the request. Please ensure that you have the proper MIME type set up for the resource you are requesting.

Please contact the server's administrator if this problem persists.

请教大家怎么回事情,还应该用curl_setopt设置什么参数
望大家能指点一下
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP