如何使用以下示例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."
答案 0 :(得分:0)
最后工作:)
contract Test {
struct Box {
uint size;
}
Box public box;
constructor() public {
box.size = 3;
}
}