2
如何翻譯這個命令行的PayPal捲曲請求--insecure
curl命令行PHP捲曲
curl -s --insecure
-H "X-PAYPAL-SECURITY-USERID: api_username"
-H "X-PAYPAL-SECURITY-PASSWORD: api_password"
-H "X-PAYPAL-SECURITY-SIGNATURE: api_signature"
-H "X-PAYPAL-REQUEST-DATA-FORMAT: NV"
-H "X-PAYPAL-RESPONSE-DATA-FORMAT: NV"
-H "X-PAYPAL-APPLICATION-ID: app_id"
我知道我將會把-H
值:
curl_setopt($ch, CURLOPT_HTTPHEADER, array('X-PAYPAL-SECURITY-USERID: api_username', 'X-PAYPAL-SECURITY-PASSWORD: api_password'));
但我不知道用--insecure
。
哦,就這樣。大! – fishcracker 2013-04-25 06:06:51
讓我知道如果你從這裏得到它的工作! – Floris 2013-04-25 06:08:59