<br />
<b>Deprecated</b>:  Creation of dynamic property Yoast\WP\SEO\Premium\Generated\Cached_Container::$normalizedIds is deprecated in <b>G:\PleskVhosts\click2call.co.in\msgclub.net\blog\wp-content\plugins\wordpress-seo-premium\src\generated\container.php</b> on line <b>27</b><br />
<br />
<b>Notice</b>:  Function _load_textdomain_just_in_time was called <strong>incorrectly</strong>. Translation loading for the <code>updraftplus</code> domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the <code>init</code> action or later. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.7.0.) in <b>G:\PleskVhosts\click2call.co.in\msgclub.net\blog\wp-includes\functions.php</b> on line <b>6131</b><br />
{"id":850,"date":"2016-11-25T18:25:00","date_gmt":"2016-11-25T12:55:00","guid":{"rendered":"http:\/\/www.msgclub.net\/blog\/?p=850"},"modified":"2024-06-03T15:51:22","modified_gmt":"2024-06-03T10:21:22","slug":"send-sms-verification-code-to-mobile-using-php-api-code","status":"publish","type":"post","link":"https:\/\/www.msgclub.net\/blog\/send-sms-verification-code-to-mobile-using-php-api-code\/","title":{"rendered":"Send SMS Verification code to Mobile Using PHP API code"},"content":{"rendered":"\n<p>Send OTP (One time password) SMS to mobile number for&nbsp;<a href=\"http:\/\/www.msgclub.net\/sms-service\/bulk-sms-api.aspx\">verification using API code<\/a><strong>.&nbsp;<\/strong>Looking for way to verify user&#8217;s mobile number with&nbsp;<strong>SMS OTP<\/strong>&nbsp;?<\/p>\n\n\n\n<p>We are here to help.<\/p>\n\n\n\n<p>Verify user phone numbers quickly and effectively using the&nbsp;<strong>SMS API<\/strong>. Add&nbsp;<strong>SMS Verification<\/strong>&nbsp;to Software and secure user data and authenticate users. With the &nbsp;<strong>PHP&nbsp;<\/strong><a href=\"http:\/\/www.msgclub.net\/sms-service\/bulk-sms.aspx\">Send SMS<\/a>&nbsp;API, easy to setup a simple, one time pin code system to verify user phone numbers across the globe and ensure software stays secure. Using the&nbsp;<strong>Send SMS API<\/strong>, we take care of the verification backend, from sending and managing the text SMS, so you just need to integrate our&nbsp;<strong>SMS verification code&nbsp;<\/strong>into your software.&nbsp;<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"350\" src=\"http:\/\/www.msgclub.net\/blog\/wp-content\/uploads\/2022\/05\/image-58.png\" alt=\"send sms\" class=\"wp-image-851\" srcset=\"https:\/\/www.msgclub.net\/blog\/wp-content\/uploads\/2022\/05\/image-58.png 800w, https:\/\/www.msgclub.net\/blog\/wp-content\/uploads\/2022\/05\/image-58-300x131.png 300w, https:\/\/www.msgclub.net\/blog\/wp-content\/uploads\/2022\/05\/image-58-768x336.png 768w\" sizes=\"auto, (max-width: 800px) 100vw, 800px\" \/><\/figure>\n\n\n\n<p><strong>SMS verification PHP API &#8211;<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><a href=\"http:\/\/msg.msgclub.net\/rest\/services\/sendSMS\/sendGroupSms?AUTH_KEY=YourAuthKey&amp;message=message&amp;senderId=dddddd&amp;routeId=1&amp;mobileNos=9999999999&amp;smsContentType=english\">http:\/\/msg.msgclub.net\/rest\/services\/sendSMS\/sendGroupSms?<strong>AUTH_KEY<\/strong>=YourAuthKey&amp;<strong>message<\/strong>=message&amp;<strong>senderId<\/strong>=dddddd&amp;<strong>routeId<\/strong>=1&amp;<strong>mobileNos<\/strong>=9999999999&amp;<strong>smsContentType<\/strong>=english<\/a><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Send a unique security code to any&nbsp;<strong>mobile device via SMS.&nbsp;<\/strong>Use this API to verify personal details, help to reduce fraud, hacking and Spamming.<\/p>\n\n\n\n<p>Supply own security code.You can use to detect if a number is actually a valid mobile device and is switched on, will receive SMS.<\/p>\n\n\n\n<p>With SMS verification PHP API, we too provide source code in PHP language.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>&lt;?php<br><br><br><br>function sendsmsGET($mobileNumber,$senderId,$routeId,$message,$serverUrl,$authKey)<br>{<br><br>&nbsp;&nbsp;&nbsp;$getData = &#8216;mobileNos=&#8217;.$mobileNumber.&#8217;&amp;message=&#8217;.urlencode($message).&#8217;&amp;senderId=&#8217;.$senderId.&#8217;&amp;routeId=&#8217;.<br>$routeId;<br><br>&nbsp;&nbsp;&nbsp;\/\/API URL<br>&nbsp;&nbsp;&nbsp;$url=&#8221;http:\/\/&#8221;.$serverUrl.&#8221;\/rest\/services\/sendSMS\/sendGroupSms?AUTH_KEY=&#8221;.$authKey.&#8221;&amp;&#8221;.$getData;<br><br><br>&nbsp;&nbsp;&nbsp;\/\/ init the resource<br>&nbsp;&nbsp;&nbsp;$ch = curl_init();<br>&nbsp;&nbsp;&nbsp;curl_setopt_array($ch, array(<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CURLOPT_URL =&gt; $url,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CURLOPT_RETURNTRANSFER =&gt; true,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CURLOPT_SSL_VERIFYHOST =&gt; 0,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CURLOPT_SSL_VERIFYPEER =&gt; 0<br><br>&nbsp;&nbsp;&nbsp;));<br><br><br>&nbsp;&nbsp;&nbsp;\/\/get response<br>&nbsp;&nbsp;&nbsp;$output = curl_exec($ch);<br><br>&nbsp;&nbsp;&nbsp;\/\/Print error if any<br>&nbsp;&nbsp;&nbsp;if(curl_errno($ch))<br>&nbsp;&nbsp;&nbsp;{<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;echo &#8216;error:&#8217; . curl_error($ch);<br>&nbsp;&nbsp;&nbsp;}<br><br>&nbsp;&nbsp;&nbsp;curl_close($ch);<br><br>&nbsp;&nbsp;&nbsp;return $output;<br>}<br><br><br><br><br><br><br>function sendsmsPOST($mobileNumber,$senderId,$routeId,$message,$serverUrl,$authKey)<br>{<br><br>&nbsp;&nbsp;<br>&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;\/\/Prepare you post parameters<br>&nbsp;&nbsp;&nbsp;$postData = array(<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#8216;mobileNumbers&#8217; =&gt; $mobileNumber, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#8216;smsContent&#8217; =&gt; $message,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#8216;senderId&#8217; =&gt; $senderId,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#8216;routeId&#8217; =&gt; $routeId,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#8220;smsContentType&#8221; =&gt;&#8217;english&#8217;<br>&nbsp;&nbsp;&nbsp;);<br><br><br>&nbsp;&nbsp;&nbsp;$data_json = json_encode($postData);<br><br><br>&nbsp;&nbsp;&nbsp;$url=&#8221;http:\/\/&#8221;.$serverUrl.&#8221;\/rest\/services\/sendSMS\/sendGroupSms?AUTH_KEY=&#8221;.$authKey;<br><br><br>&nbsp;&nbsp;&nbsp;\/\/ init the resource<br>&nbsp;&nbsp;&nbsp;$ch = curl_init();<br><br>&nbsp;&nbsp;&nbsp;<br><br>&nbsp;&nbsp;&nbsp;curl_setopt_array($ch, array(<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CURLOPT_URL =&gt; $url,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CURLOPT_HTTPHEADER =&gt; array(&#8216;Content-Type: application\/json&#8217;,&#8217;Content-Length: &#8216; . strlen($data_json)),<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CURLOPT_RETURNTRANSFER =&gt; true,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CURLOPT_POST =&gt; true,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CURLOPT_POSTFIELDS =&gt; $data_json,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CURLOPT_SSL_VERIFYHOST =&gt; 0,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CURLOPT_SSL_VERIFYPEER =&gt; 0<br>&nbsp;&nbsp;&nbsp;));<br><br>&nbsp;&nbsp;&nbsp;\/\/get response<br>&nbsp;&nbsp;&nbsp;$output = curl_exec($ch);<br><br>&nbsp;&nbsp;&nbsp;\/\/Print error if any<br>&nbsp;&nbsp;&nbsp;if(curl_errno($ch))<br>&nbsp;&nbsp;&nbsp;{<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;echo &#8216;error:&#8217; . curl_error($ch);<br>&nbsp;&nbsp;&nbsp;}<br>&nbsp;&nbsp;&nbsp;curl_close($ch);<br>&nbsp;&nbsp;&nbsp;return $output;<br>}<br><br><br><br>?&gt;<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>For more details&nbsp;<a href=\"http:\/\/www.msgclub.net\/contact_us.aspx\">contact us<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Send OTP (One time password) SMS to mobile number for&nbsp;verification using API code.&nbsp;Looking for way to verify user&#8217;s mobile number with&nbsp;SMS OTP&nbsp;? We are here to help. Verify user phone numbers quickly and effectively using the&nbsp;SMS API. Add&nbsp;SMS Verification&nbsp;to Software and secure user data and authenticate users. With the &nbsp;PHP&nbsp;Send SMS&nbsp;API, easy to setup a &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"Send SMS Verification code to Mobile Using PHP API code\" class=\"read-more button\" href=\"https:\/\/www.msgclub.net\/blog\/send-sms-verification-code-to-mobile-using-php-api-code\/#more-850\" aria-label=\"Read more about Send SMS Verification code to Mobile Using PHP API code\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":851,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[399,132],"tags":[13,6,55,5,547,545,7,179,10,18,27,16,15,546,544,17,543],"class_list":["post-850","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-bulk-sms-api","category-bulk-sms-service","tag-api-integration","tag-bulk-sms","tag-bulk-sms-services","tag-google-chrome-extension","tag-mobile-device-via-sms","tag-php-send-sms-api","tag-send-sms","tag-send-sms-api","tag-sending-sms-2","tag-sms-api","tag-sms-marketing","tag-sms-marketing-campaign","tag-sms-services","tag-sms-verification-code","tag-sms-verification-php","tag-text-message-marketing-campaign","tag-verification-using-api-code","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-50"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v20.2.1 (Yoast SEO v27.6) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\r\n<title>Send SMS Verification code to Mobile Using PHP API code - MSGCLUB Blog<\/title>\r\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\r\n<link rel=\"canonical\" href=\"https:\/\/www.msgclub.net\/blog\/send-sms-verification-code-to-mobile-using-php-api-code1\/\" \/>\r\n<meta property=\"og:locale\" content=\"en_US\" \/>\r\n<meta property=\"og:type\" content=\"article\" \/>\r\n<meta property=\"og:title\" content=\"Send SMS Verification code to Mobile Using PHP API code\" \/>\r\n<meta property=\"og:description\" content=\"Send OTP (One time password) SMS to mobile number for&nbsp;verification using API code.&nbsp;Looking for way to verify user&#8217;s mobile number with&nbsp;SMS OTP&nbsp;? We are here to help. Verify user phone numbers quickly and effectively using the&nbsp;SMS API. Add&nbsp;SMS Verification&nbsp;to Software and secure user data and authenticate users. With the &nbsp;PHP&nbsp;Send SMS&nbsp;API, easy to setup a ... Read more\" \/>\r\n<meta property=\"og:url\" content=\"https:\/\/www.msgclub.net\/blog\/send-sms-verification-code-to-mobile-using-php-api-code1\/\" \/>\r\n<meta property=\"og:site_name\" content=\"MSGCLUB Blog\" \/>\r\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/msgclubdotnet\/\" \/>\r\n<meta property=\"article:published_time\" content=\"2016-11-25T12:55:00+00:00\" \/>\r\n<meta property=\"article:modified_time\" content=\"2024-06-03T10:21:22+00:00\" \/>\r\n<meta property=\"og:image\" content=\"http:\/\/www.msgclub.net\/blog\/wp-content\/uploads\/2022\/05\/image-58.png\" \/>\r\n<meta name=\"author\" content=\"MSGCLUB Team\" \/>\r\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\r\n<meta name=\"twitter:creator\" content=\"@MSGCLUB\" \/>\r\n<meta name=\"twitter:site\" content=\"@MSGCLUB\" \/>\r\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"MSGCLUB Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\r\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/send-sms-verification-code-to-mobile-using-php-api-code1\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/send-sms-verification-code-to-mobile-using-php-api-code1\\\/\"},\"author\":{\"name\":\"MSGCLUB Team\",\"@id\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/#\\\/schema\\\/person\\\/bf3b82b3f61b1dc1487a1206b8ad8775\"},\"headline\":\"Send SMS Verification code to Mobile Using PHP API code\",\"datePublished\":\"2016-11-25T12:55:00+00:00\",\"dateModified\":\"2024-06-03T10:21:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/send-sms-verification-code-to-mobile-using-php-api-code1\\\/\"},\"wordCount\":698,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/send-sms-verification-code-to-mobile-using-php-api-code1\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/05\\\/image-58.png\",\"keywords\":[\"API Integration\",\"Bulk SMS\",\"Bulk SMS services\",\"Google Chrome Extension\",\"Mobile device via SMS\",\"PHP Send SMS API\",\"Send SMS\",\"Send SMS API\",\"Sending SMS\",\"SMS API\",\"SMS Marketing\",\"SMS marketing campaign\",\"SMS services\",\"SMS verification code\",\"SMS Verification php\",\"text message marketing campaign\",\"Verification using API code\"],\"articleSection\":[\"Bulk SMS API\",\"Bulk SMS Service\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/send-sms-verification-code-to-mobile-using-php-api-code1\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/send-sms-verification-code-to-mobile-using-php-api-code1\\\/\",\"url\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/send-sms-verification-code-to-mobile-using-php-api-code1\\\/\",\"name\":\"Send SMS Verification code to Mobile Using PHP API code - MSGCLUB Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/send-sms-verification-code-to-mobile-using-php-api-code1\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/send-sms-verification-code-to-mobile-using-php-api-code1\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/05\\\/image-58.png\",\"datePublished\":\"2016-11-25T12:55:00+00:00\",\"dateModified\":\"2024-06-03T10:21:22+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/send-sms-verification-code-to-mobile-using-php-api-code1\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/send-sms-verification-code-to-mobile-using-php-api-code1\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/send-sms-verification-code-to-mobile-using-php-api-code1\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/05\\\/image-58.png\",\"contentUrl\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/05\\\/image-58.png\",\"width\":800,\"height\":350},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/send-sms-verification-code-to-mobile-using-php-api-code1\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Send SMS Verification code to Mobile Using PHP API code\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/\",\"name\":\"msgclub.net\",\"description\":\"One Stop Bulk Communication Services \",\"publisher\":{\"@id\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/#organization\",\"name\":\"MSGCLUB\",\"url\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/05\\\/msglogo-1.png\",\"contentUrl\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/05\\\/msglogo-1.png\",\"width\":200,\"height\":90,\"caption\":\"MSGCLUB\"},\"image\":{\"@id\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/msgclubdotnet\\\/\",\"https:\\\/\\\/x.com\\\/MSGCLUB\",\"https:\\\/\\\/in.linkedin.com\\\/company\\\/msgclub-net---india\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/#\\\/schema\\\/person\\\/bf3b82b3f61b1dc1487a1206b8ad8775\",\"name\":\"MSGCLUB Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5d3ac483ecbecca27535a356900972d69a406a4a41baf31466c3be212608a6f7?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5d3ac483ecbecca27535a356900972d69a406a4a41baf31466c3be212608a6f7?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5d3ac483ecbecca27535a356900972d69a406a4a41baf31466c3be212608a6f7?s=96&d=mm&r=g\",\"caption\":\"MSGCLUB Team\"},\"url\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/author\\\/msgclub_1212\\\/\"}]}<\/script>\r\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Send SMS Verification code to Mobile Using PHP API code - MSGCLUB Blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.msgclub.net\/blog\/send-sms-verification-code-to-mobile-using-php-api-code1\/","og_locale":"en_US","og_type":"article","og_title":"Send SMS Verification code to Mobile Using PHP API code","og_description":"Send OTP (One time password) SMS to mobile number for&nbsp;verification using API code.&nbsp;Looking for way to verify user&#8217;s mobile number with&nbsp;SMS OTP&nbsp;? We are here to help. Verify user phone numbers quickly and effectively using the&nbsp;SMS API. Add&nbsp;SMS Verification&nbsp;to Software and secure user data and authenticate users. With the &nbsp;PHP&nbsp;Send SMS&nbsp;API, easy to setup a ... Read more","og_url":"https:\/\/www.msgclub.net\/blog\/send-sms-verification-code-to-mobile-using-php-api-code1\/","og_site_name":"MSGCLUB Blog","article_publisher":"https:\/\/www.facebook.com\/msgclubdotnet\/","article_published_time":"2016-11-25T12:55:00+00:00","article_modified_time":"2024-06-03T10:21:22+00:00","og_image":[{"url":"http:\/\/www.msgclub.net\/blog\/wp-content\/uploads\/2022\/05\/image-58.png","type":"","width":"","height":""}],"author":"MSGCLUB Team","twitter_card":"summary_large_image","twitter_creator":"@MSGCLUB","twitter_site":"@MSGCLUB","twitter_misc":{"Written by":"MSGCLUB Team","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.msgclub.net\/blog\/send-sms-verification-code-to-mobile-using-php-api-code1\/#article","isPartOf":{"@id":"https:\/\/www.msgclub.net\/blog\/send-sms-verification-code-to-mobile-using-php-api-code1\/"},"author":{"name":"MSGCLUB Team","@id":"https:\/\/www.msgclub.net\/blog\/#\/schema\/person\/bf3b82b3f61b1dc1487a1206b8ad8775"},"headline":"Send SMS Verification code to Mobile Using PHP API code","datePublished":"2016-11-25T12:55:00+00:00","dateModified":"2024-06-03T10:21:22+00:00","mainEntityOfPage":{"@id":"https:\/\/www.msgclub.net\/blog\/send-sms-verification-code-to-mobile-using-php-api-code1\/"},"wordCount":698,"commentCount":0,"publisher":{"@id":"https:\/\/www.msgclub.net\/blog\/#organization"},"image":{"@id":"https:\/\/www.msgclub.net\/blog\/send-sms-verification-code-to-mobile-using-php-api-code1\/#primaryimage"},"thumbnailUrl":"https:\/\/www.msgclub.net\/blog\/wp-content\/uploads\/2022\/05\/image-58.png","keywords":["API Integration","Bulk SMS","Bulk SMS services","Google Chrome Extension","Mobile device via SMS","PHP Send SMS API","Send SMS","Send SMS API","Sending SMS","SMS API","SMS Marketing","SMS marketing campaign","SMS services","SMS verification code","SMS Verification php","text message marketing campaign","Verification using API code"],"articleSection":["Bulk SMS API","Bulk SMS Service"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.msgclub.net\/blog\/send-sms-verification-code-to-mobile-using-php-api-code1\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.msgclub.net\/blog\/send-sms-verification-code-to-mobile-using-php-api-code1\/","url":"https:\/\/www.msgclub.net\/blog\/send-sms-verification-code-to-mobile-using-php-api-code1\/","name":"Send SMS Verification code to Mobile Using PHP API code - MSGCLUB Blog","isPartOf":{"@id":"https:\/\/www.msgclub.net\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.msgclub.net\/blog\/send-sms-verification-code-to-mobile-using-php-api-code1\/#primaryimage"},"image":{"@id":"https:\/\/www.msgclub.net\/blog\/send-sms-verification-code-to-mobile-using-php-api-code1\/#primaryimage"},"thumbnailUrl":"https:\/\/www.msgclub.net\/blog\/wp-content\/uploads\/2022\/05\/image-58.png","datePublished":"2016-11-25T12:55:00+00:00","dateModified":"2024-06-03T10:21:22+00:00","breadcrumb":{"@id":"https:\/\/www.msgclub.net\/blog\/send-sms-verification-code-to-mobile-using-php-api-code1\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.msgclub.net\/blog\/send-sms-verification-code-to-mobile-using-php-api-code1\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.msgclub.net\/blog\/send-sms-verification-code-to-mobile-using-php-api-code1\/#primaryimage","url":"https:\/\/www.msgclub.net\/blog\/wp-content\/uploads\/2022\/05\/image-58.png","contentUrl":"https:\/\/www.msgclub.net\/blog\/wp-content\/uploads\/2022\/05\/image-58.png","width":800,"height":350},{"@type":"BreadcrumbList","@id":"https:\/\/www.msgclub.net\/blog\/send-sms-verification-code-to-mobile-using-php-api-code1\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.msgclub.net\/blog\/"},{"@type":"ListItem","position":2,"name":"Send SMS Verification code to Mobile Using PHP API code"}]},{"@type":"WebSite","@id":"https:\/\/www.msgclub.net\/blog\/#website","url":"https:\/\/www.msgclub.net\/blog\/","name":"msgclub.net","description":"One Stop Bulk Communication Services ","publisher":{"@id":"https:\/\/www.msgclub.net\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.msgclub.net\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.msgclub.net\/blog\/#organization","name":"MSGCLUB","url":"https:\/\/www.msgclub.net\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.msgclub.net\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.msgclub.net\/blog\/wp-content\/uploads\/2024\/05\/msglogo-1.png","contentUrl":"https:\/\/www.msgclub.net\/blog\/wp-content\/uploads\/2024\/05\/msglogo-1.png","width":200,"height":90,"caption":"MSGCLUB"},"image":{"@id":"https:\/\/www.msgclub.net\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/msgclubdotnet\/","https:\/\/x.com\/MSGCLUB","https:\/\/in.linkedin.com\/company\/msgclub-net---india"]},{"@type":"Person","@id":"https:\/\/www.msgclub.net\/blog\/#\/schema\/person\/bf3b82b3f61b1dc1487a1206b8ad8775","name":"MSGCLUB Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/5d3ac483ecbecca27535a356900972d69a406a4a41baf31466c3be212608a6f7?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/5d3ac483ecbecca27535a356900972d69a406a4a41baf31466c3be212608a6f7?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/5d3ac483ecbecca27535a356900972d69a406a4a41baf31466c3be212608a6f7?s=96&d=mm&r=g","caption":"MSGCLUB Team"},"url":"https:\/\/www.msgclub.net\/blog\/author\/msgclub_1212\/"}]}},"_links":{"self":[{"href":"https:\/\/www.msgclub.net\/blog\/wp-json\/wp\/v2\/posts\/850","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.msgclub.net\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.msgclub.net\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.msgclub.net\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.msgclub.net\/blog\/wp-json\/wp\/v2\/comments?post=850"}],"version-history":[{"count":5,"href":"https:\/\/www.msgclub.net\/blog\/wp-json\/wp\/v2\/posts\/850\/revisions"}],"predecessor-version":[{"id":2350,"href":"https:\/\/www.msgclub.net\/blog\/wp-json\/wp\/v2\/posts\/850\/revisions\/2350"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.msgclub.net\/blog\/wp-json\/wp\/v2\/media\/851"}],"wp:attachment":[{"href":"https:\/\/www.msgclub.net\/blog\/wp-json\/wp\/v2\/media?parent=850"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.msgclub.net\/blog\/wp-json\/wp\/v2\/categories?post=850"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.msgclub.net\/blog\/wp-json\/wp\/v2\/tags?post=850"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}