0

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

これまでに見つけた最も近いものは次のとおりです。

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: SIP 終了のためにサブドメインの名前を null に変更できない

4

1 に答える 1

1

API を介して SIP クレデンシャルについて調べることができます。

Java で取得する例:

// 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()); 
  }
}

お役に立てれば!

于 2016-07-28T22:30:06.093 に答える