如何使用Curl(ringCaptcha)发送短信

时间:2018-07-07 19:28:31

标签: php curl

如何使用以下示例curl来使用PHP发送实际的SMS?

// -- Sending Direct SMS --
curl -X "POST" "https://api.ringcaptcha.com/APP_KEY/sms" \
-d "api_key=API_KEY" \
-d "phone=TO_NUMBER" \
-d "message=Hi there! This is a test message from
RingCaptcha."

1 个答案:

答案 0 :(得分:0)

最后工作:)

contract Test {

    struct Box {
        uint size;
    }

    Box public box;

    constructor() public {
        box.size = 3;
    }

}