How to disable Caller id in twilio?

给你一囗甜甜゛ 提交于 2019-12-11 08:25:07

问题


In my applicalion, i am using twilio calling api. i am using rest service to make a call it's fine. if any possible to hide a from number to users? i need to block orginal from phone number? thanks in advance. ` HashMap params = new HashMap();

    params.put("From", "+XXXXXXXXXXXXX"); 

    params.put("To", num);
    params.put("Url", Url);


    CallFactory callFactory = account.getCallFactory();


    try {
        Call call = callFactory.create(params);` 

回答1:


Twilio evangelist here.

Unfortunately its not possible to hide the caller ID. You can choose to show either a Twilio phone number or a number you have verified with Twilio.

Hope that helps.



来源:https://stackoverflow.com/questions/24155406/how-to-disable-caller-id-in-twilio

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!