ussd

Passing multiple USSD commands in a single call

我是研究僧i 提交于 2019-12-12 04:22:40
问题 Say you have a USSD service which has the following structure: Main menu -> *123# Menu Item 1 -> Press 1 from main menu Menu Item 2 -> Press 2 from main menu Is there any way to dial a single command to go straight to Menu Item 1, for example *123#1 as opposed to dialing *123# , then waiting for the Menu, THEN selecting 1? Hope the question is clear. 回答1: Yes, you have to handle USSD auto dialing in your application. For example a user should be able to dial *123*2# to go straight to menu

How to send and receive USSD codes with ionic platform?

我与影子孤独终老i 提交于 2019-12-12 03:33:38
问题 I'm a junior developer in Ionic platform, now I have a problem to send and receive USSD codes with that .... please help me is you know about that. 回答1: From what I have found on internet and tested, you can send USSD codes <a href="tel:YOUR_NUMBER" class="button button-positive">Call me? </a> and to make it functional you need to provide access in CONFIG.XML, simple add <access origin="tel:*" launch-external="yes"/> only disadvantage is: it will not directly dial your number rather open it

How to make a USSD call on a iPhone from a button in a webpage?

。_饼干妹妹 提交于 2019-12-11 06:03:53
问题 How to make a USSD call on a iPhone from a button in a webpage? I have tried the urlencode tel%3A*141%23 but that still does not work. This is possible cause I can do a USSD call from my contacts application on Iphone? Does anyone have a solution for this, I don't even need the USSD call to run in the background, just to make the USSD call. I have read https://developer.apple.com/library/ios/#featuredarticles/iPhoneURLScheme_Reference/Articles/PhoneLinks.html about the special characters *

How to open the ios Native dialer app from my App

牧云@^-^@ 提交于 2019-12-10 17:18:37
问题 I want to open the native dialer app and allow the user to enter the phone number there. The reason why i want this is because in my app the user needs to use USSD codes in order to make calls, but using the code bellow nothing happens (nothing is started) NSString *phoneNumber = [@"tel://" stringByAppendingString:number]; [[UIApplication sharedApplication] openURL:[NSURL URLWithString:phoneNumber]]; I read here (StackOverflow) that making calls from your app that contain * and # are

GSM Modem USSD Check Balance Getting CME Error 100

被刻印的时光 ゝ 提交于 2019-12-10 15:32:55
问题 I'm trying to check the SIM Card Balance via USSD using Huawei E1550 3G modem But when i always send AT+CUSD=1,"*100#",15 I Get +CME Error: 100 And yes my modem support USSD because i have a dashboard application for the modem and i can check the balance and also recharge the SIM Card. I'm using GSMComm library in C# i've also tried it in putty termainl but keep getting the same error I searched for the error 100 and found that it's "Unknown Error" no really helpful :) I did also tried

How to write a AT+CUSD ussd command to support maximum handsets

夙愿已清 提交于 2019-12-10 08:47:02
问题 I am facing an issue related to AT+CUSD command. On some Gsm modems, this command expects three parameters while on the others, it expects just two parameters. Moreover, different values of those parameters. I want to know that, how can I configure the Gsm modem so that this command can be executed in a uniform way on most Gsm modems. Forexample: On Nokia c6-01 , the cusd command is executed successfully only in this way: AT+CUSD=1,"*123#",15 Whereas on Sony Ericsson K750: AT+CUSD=1,"*123#"

SMSLib example for interactive USSD session

核能气质少年 提交于 2019-12-09 13:53:13
问题 I have a USSD application that provides an interactive session for users, for example: User> Dial USSD Shortcode Serv> Return Main Menu User> Select Option 1, e.g. "View Movie Times" Serv> Return List of Cities User> Select Option 3, e.g. Mumbai Serv> Return List of Cinemas User> etc ... I would like to test the USSD Server by using SMSLib to simulate the user. Are there any example SMSLib code snippets that show how to perform an interactive USSD session with a USSD server? 回答1: The code at

Sending USSD request in one session

女生的网名这么多〃 提交于 2019-12-08 09:23:48
问题 I would like to call a ussd in this format *123*1*3# to shorten the process of dialing *123# waiting for menu then 1 waiting the menu then 3. I discover that in some ussd calls it's possible and some not possible but their are number of applications which does this e.g https://usehover.com Am basic Android developer bellow is the code which i used to run ussd command and i believe is lucking support String ussd = "*123*1*4*5" + Uri.encode("#"); startActivity(new Intent(Intent.ACTION_CALL, Uri

Sending USSD code programmatically dials Skype instead of normal phone call

百般思念 提交于 2019-12-08 05:53:38
问题 When running this String ussdCode = "*" + "100" + Uri.encode("#"); startActivity(new Intent("android.intent.action.CALL", Uri.parse("tel:" + ussdCode))); I expect a normal phone call to be done, but instead of that Skype go to front and make the call for *100# USSD code. I logged out from Skype and it sill brings Skype to front!. How to force it to use the normal phone call instead of Skype? 回答1: Thats because you have Skype as the default application for calls. This is a device configuration

Android - Navigating through USSD menu using pre-determined inputs sent via requests

妖精的绣舞 提交于 2019-12-08 01:54:39
问题 I am planning to create an Android App that will automate sending a users response to a USSD Menu. At a click of a button, the app will send the initial code, followed by the rest of the menu inputs. For example, the initial number is *143#, followed by 1, 1, 1, and a user PIN. I'd like to be able to automate that sequence of inputs so that the user won't have to input it on their own. I know that in Android Oreo, they implemented a USSD Callback using the TelephonyManager, where the Android