本文整理匯總了C#中PayPal.NVP.PlatformAPICallPreHandler.GetEndPoint方法的典型用法代碼示例。如果您正苦於以下問題:C# PlatformAPICallPreHandler.GetEndPoint方法的具體用法?C# PlatformAPICallPreHandler.GetEndPoint怎麽用?C# PlatformAPICallPreHandler.GetEndPoint使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類PayPal.NVP.PlatformAPICallPreHandler
的用法示例。
在下文中一共展示了PlatformAPICallPreHandler.GetEndPoint方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: GetEndpointForDefaultModeWithoutEndpoint
public void GetEndpointForDefaultModeWithoutEndpoint()
{
Dictionary<string, string> config = new Dictionary<string, string>(accountConfig);
PlatformAPICallPreHandler platformHandler = new PlatformAPICallPreHandler(config, "payload", "servicename", "method", UnitTestConstants.APIUserName, "accessToken", "tokenSecret");
platformHandler.GetEndPoint();
}
示例2: GetEndpointForLiveMode
public void GetEndpointForLiveMode()
{
Dictionary<string, string> config = new Dictionary<string, string>(accountConfig);
config.Add(BaseConstants.APPLICATION_MODE_CONFIG, BaseConstants.SANDBOX_MODE);
PlatformAPICallPreHandler platformHandler = new PlatformAPICallPreHandler(config, "payload", "servicename", "method", UnitTestConstants.APIUserName, "accessToken", "tokenSecret");
Assert.AreEqual(BaseConstants.PLATFORM_SANDBOX_ENDPOINT + "servicename/method", platformHandler.GetEndPoint());
}
示例3: GetPayloadEndpointWithoutTokenTest
public void GetPayloadEndpointWithoutTokenTest()
{
platformAPIHandler = new PlatformAPICallPreHandler("payload", "servicename", "method", UnitTestConstants.APIUserName, "accessToken", "tokenSecret");
Assert.AreEqual("https://svcs.sandbox.paypal.com/servicename/method", platformAPIHandler.GetEndPoint());
Assert.AreEqual("payload", platformAPIHandler.GetPayLoad());
SignatureCredential signatureCredential = (SignatureCredential)platformAPIHandler.GetCredential();
TokenAuthorization thirdAuth = (TokenAuthorization)signatureCredential.ThirdPartyAuthorization;
Assert.AreEqual("accessToken", thirdAuth.AccessToken);
Assert.AreEqual("tokenSecret", thirdAuth.TokenSecret);
}
示例4: GetEndpointForDefaultModeWithExplicitEndpoint
public void GetEndpointForDefaultModeWithExplicitEndpoint()
{
Dictionary<string, string> config = new Dictionary<string, string>(accountConfig);
config.Add(BaseConstants.END_POINT_CONFIG, UnitTestConstants.APIEndpointNVP);
PlatformAPICallPreHandler platformHandler = new PlatformAPICallPreHandler(config, "payload", "servicename", "method", UnitTestConstants.APIUserName, "accessToken", "tokenSecret");
Assert.AreEqual(UnitTestConstants.APIEndpointNVP + "servicename/method", platformHandler.GetEndPoint());
config.Add("PayPalAPI", UnitTestConstants.APIEndpointSOAP);
platformHandler = new PlatformAPICallPreHandler(config, "payload", "servicename", "method", UnitTestConstants.APIUserName, "accessToken", "tokenSecret");
platformHandler.PortName = "PayPalAPI";
Assert.AreEqual(UnitTestConstants.APIEndpointSOAP + "/servicename/method", platformHandler.GetEndPoint());
}