2016-07-26 5 views
0

私が実際に探しているのは、特定のトランクの着信SIP URIです。Twilio発信と着信SIP URIとJava

は、私がこれまでに見つかった最も近いました:

getCredential 

public Credential getCredential(String credentialSid) 

Gets the credentials from the credential list 

Returns: 
    the credentials 

https://twilio.github.io/twilio-java/com/twilio/sdk/resource/instance/sip/CredentialListInstance.html#getCredential-java.lang.String-

にはどうすればcredentialSid取得、および、credentialSid何であるのか?

SIDはセキュリティIDですか?

も参照してください。Twilio: cannot rename subdomain null for SIP termination

答えて

1

あなたはおよそSIP Credentials via the APIを見つけることができます。

とJavaに1を取得する例:

// Install the Java helper library from twilio.com/docs/java/install 
import com.twilio.sdk.TwilioRestClient; 
import com.twilio.sdk.TwilioRestException; 
import com.twilio.sdk.resource.instance.sip.Credential; 

public class Example { 

    // Find your Account Sid and Token at twilio.com/user/account 
    public static final String ACCOUNT_SID = "None"; 
    public static final String AUTH_TOKEN = "your_auth_token"; 

    public static void main(String[] args) throws TwilioRestException { 
    TwilioRestClient client = new TwilioRestClient(ACCOUNT_SID, AUTH_TOKEN); 

    // Get an object from its sid. If you do not have a sid, 
    // check out the list resource examples on this page 
    Credential credential = client.getAccount().getCredentialList("CL32a3c49700934481addd5ce1659f04d2").getCredential("SC32a3c49700934481addd5ce1659f04d2"); 
    System.out.println(credential.getUsername()); 
    } 
} 

は、この情報がお役に立てば幸い!

関連する問題