大家好,我正在尝试与 Braintree 进行交易,并且我正在使用 Heroku rails 服务器。我无法获得 client_token,当我尝试进行交易时,我得到 404 未找到。我正在使用 GitHub 上存储库中的演示应用程序。这是演示应用程序中的相关代码。
import com.braintreepayments.demo.models.ClientToken;
import com.braintreepayments.demo.models.Transaction;
import retrofit.Callback;
import retrofit.http.Field;
import retrofit.http.FormUrlEncoded;
import retrofit.http.GET;
import retrofit.http.POST;
import retrofit.http.Query;
public interface ApiClient {
@GET("/client_token")
void getClientToken(@Query("customer_id") String customerId, @Query("merchant_account_id") String merchantAccountId, Callback<ClientToken> callback);
@FormUrlEncoded
@POST("/nonce/transaction")
void createTransaction(@Field("nonce") String nonce, Callback<Transaction> callback);
@FormUrlEncoded
@POST("/nonce/transaction")
//@POST("/checkout")
void createTransaction(@Field("nonce") String nonce, @Field("merchant_account_id") String merchantAccountId, Callback<Transaction> callback);
@FormUrlEncoded
@POST("/nonce/transaction")
void createTransaction(@Field("nonce") String nonce, @Field("merchant_account_id") String merchantAccountId, @Field("three_d_secure_required") boolean requireThreeDSecure, Callback<Transaction> callback);
}
并在交易活动中
private void sendNonceToServer(PaymentMethodNonce nonce) {
Callback<Transaction> callback = new Callback<Transaction>() {
@Override
public void success(Transaction transaction, Response response) {
if (transaction.getMessage() != null &&
transaction.getMessage().startsWith("created")) {
setStatus(R.string.transaction_complete);
setMessage(transaction.getMessage());
} else {
setStatus(R.string.transaction_failed);
if (TextUtils.isEmpty(transaction.getMessage())) {
setMessage("Server response was empty or malformed");
} else {
setMessage(transaction.getMessage());
}
}
}
@Override
public void failure(RetrofitError error) {
Log.d("error",error.getResponse().getReason());
setStatus(R.string.transaction_failed);
setMessage("Unable to create a transaction. Response Code: " +
error.getResponse().getStatus() + " Response body: " +
error.getResponse().getBody());
}
};
if (Settings.isThreeDSecureEnabled(this) && Settings.isThreeDSecureRequired(this)) {
DemoApplication.getApiClient(this).createTransaction(nonce.getNonce(),
Settings.getThreeDSecureMerchantAccountId(this), true, callback);
} else if (Settings.isThreeDSecureEnabled(this)) {
DemoApplication.getApiClient(this).createTransaction(nonce.getNonce(),
Settings.getThreeDSecureMerchantAccountId(this), callback);
} else if (nonce instanceof CardNonce && ((CardNonce) nonce).getCardType().equals("UnionPay")) {
DemoApplication.getApiClient(this).createTransaction(nonce.getNonce(),
Settings.getUnionPayMerchantAccountId(this), callback);
} else {
DemoApplication.getApiClient(this).createTransaction(nonce.getNonce(), Settings.getMerchantAccountId(this),
callback);
}
}
就像我说的那样,我得到了 client_token 就好了,所以我知道基本 url 很好,只是当我发送 nonce 时,我在尝试进行交易时收到 404 not found 错误。
感谢您抽出宝贵时间,如果您需要更多信息,我将很乐意提供。
编辑:我还收到商家帐户未列入白名单的错误,我不知道这是否与此有关。
编辑2我无法获得client_token或者我使用令牌化密钥弄错了