서비스를 다음과 같이 통합하고자합니다. 사용자에게 코드를 제공하라는 Google 제품 로그인 외에도발신 전화 메시징을위한 클라우드 서비스
나는 문제없이 mp3로 코드를 생성 할 수 있지만 전화를 걸고 사용자에게 mp3를 재생할 수있는 서비스를 알지 못합니다.
이러한 종류의 앱에 대한 의견이나 의견이 필요하십니까?
서비스를 다음과 같이 통합하고자합니다. 사용자에게 코드를 제공하라는 Google 제품 로그인 외에도발신 전화 메시징을위한 클라우드 서비스
나는 문제없이 mp3로 코드를 생성 할 수 있지만 전화를 걸고 사용자에게 mp3를 재생할 수있는 서비스를 알지 못합니다.
이러한 종류의 앱에 대한 의견이나 의견이 필요하십니까?
Twilio Cloud Communication을 적극 권장합니다. SMS 또는 전화 통화를 통해 코드를 보내는 데 사용할 수 있습니다.
여기에, 예를 들어 PHP를 사용하여 그것이 어떻게 보일지입니다 -
문자 메시지
<?php
// Get the Twilio PHP Library from http://twilio.com/docs/libraries
require "Services/Twilio.php";
//Random Code
$code = rand(pow(10, 6-1), pow(10, 6)-1);
// Set your Twilio Account settings
$AccountSid = "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX";
$AuthToken = "YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY";
//Initial Twilio instance
$client = new Services_Twilio($AccountSid, $AuthToken);
//Recipient number - must be +15555555555 format
$recipient = '+18882224444';
$caller_id = '+18008885555'; //Twilio phone number
//Send the message
$sms = $client->account->sms_messages->create(
$caller_id,
$recipient,
"Your activation code is: $code"
);
전화 통화
<?php
// Get the Twilio PHP Library from http://twilio.com/docs/libraries
require "Services/Twilio.php";
// Set your Twilio Account settings
$AccountSid = "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX";
$AuthToken = "YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY";
//Initial Twilio instance
$client = new Services_Twilio($AccountSid, $AuthToken);
$call = $client->account->calls->create(
'9991231234', // From a valid Twilio number
'8881231234', // Call this number
//When the call is connected, code at this URL will be executed
'/say-code.php'
);
말-code.php
<?php
// Get the Twilio PHP Library from http://twilio.com/docs/libraries
require "Services/Twilio.php";
// Random Code
$code = rand(pow(10, 6-1), pow(10, 6)-1);
// Generate TwiML - XML for Twilio
// This will execute when the caller is connected and use Text-To-Speech to
// play their activation code.
// You may also use an MP3 like so:
// $response->play('http://example.com/code.mp3');
$response = new Services_Twilio_Twiml();
$response->say("Your activation code is $code");
print $response;
Twilio에서이 작업을 수행하는 데 도움이되는 다른 도우미 라이브러리가 많이 있습니다. 희망이 도움이!
Twilio Cloud Communications와 같은 것이 작동하는지 궁금합니다.