当前位置: 首页>>代码示例>>Java>>正文


Java BitcoinURI.getPaymentRequestUrl方法代码示例

本文整理汇总了Java中org.bitcoinj.uri.BitcoinURI.getPaymentRequestUrl方法的典型用法代码示例。如果您正苦于以下问题:Java BitcoinURI.getPaymentRequestUrl方法的具体用法?Java BitcoinURI.getPaymentRequestUrl怎么用?Java BitcoinURI.getPaymentRequestUrl使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.bitcoinj.uri.BitcoinURI的用法示例。


在下文中一共展示了BitcoinURI.getPaymentRequestUrl方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: createFromBitcoinUri

import org.bitcoinj.uri.BitcoinURI; //导入方法依赖的package包/类
/**
 * Returns a future that will be notified with a PaymentSession object after it is fetched using the provided uri.
 * uri is a BIP-72-style BitcoinURI object that specifies where the {@link org.bitcoin.protocols.payments.Protos.PaymentRequest} object may
 * be fetched in the r= parameter.
 * If verifyPki is specified and the payment request object specifies a PKI method, then the system trust store will
 * be used to verify the signature provided by the payment request. An exception is thrown by the future if the
 * signature cannot be verified.
 * If trustStoreLoader is null, the system default trust store is used.
 */
public static ListenableFuture<PaymentSession> createFromBitcoinUri(final BitcoinURI uri, final boolean verifyPki, @Nullable final TrustStoreLoader trustStoreLoader)
        throws PaymentProtocolException {
    String url = uri.getPaymentRequestUrl();
    if (url == null)
        throw new PaymentProtocolException.InvalidPaymentRequestURL("No payment request URL (r= parameter) in BitcoinURI " + uri);
    try {
        return fetchPaymentRequest(new URI(url), verifyPki, trustStoreLoader);
    } catch (URISyntaxException e) {
        throw new PaymentProtocolException.InvalidPaymentRequestURL(e);
    }
}
 
开发者ID:guodroid,项目名称:okwallet,代码行数:21,代码来源:PaymentSession.java

示例2: fromBitcoinUri

import org.bitcoinj.uri.BitcoinURI; //导入方法依赖的package包/类
public static PaymentIntent fromBitcoinUri(final BitcoinURI bitcoinUri) {
    final Address address = bitcoinUri.getAddress();
    final Output[] outputs = address != null ? buildSimplePayTo(bitcoinUri.getAmount(), address) : null;
    final String bluetoothMac = (String) bitcoinUri.getParameterByName(Bluetooth.MAC_URI_PARAM);
    final String paymentRequestHashStr = (String) bitcoinUri.getParameterByName("h");
    final byte[] paymentRequestHash = paymentRequestHashStr != null ? base64UrlDecode(paymentRequestHashStr) : null;

    return new PaymentIntent(PaymentIntent.Standard.BIP21, null, null, outputs, bitcoinUri.getLabel(),
            bluetoothMac != null ? "bt:" + bluetoothMac : null, null, bitcoinUri.getPaymentRequestUrl(),
            paymentRequestHash);
}
 
开发者ID:guodroid,项目名称:okwallet,代码行数:12,代码来源:PaymentIntent.java

示例3: createFromBitcoinUri

import org.bitcoinj.uri.BitcoinURI; //导入方法依赖的package包/类
/**
 * Returns a future that will be notified with a PaymentSession object after it is fetched using the provided uri.
 * uri is a BIP-72-style BitcoinURI object that specifies where the {@link Protos.PaymentRequest} object may
 * be fetched in the r= parameter.
 * If verifyPki is specified and the payment request object specifies a PKI method, then the system trust store will
 * be used to verify the signature provided by the payment request. An exception is thrown by the future if the
 * signature cannot be verified.
 * If trustStoreLoader is null, the system default trust store is used.
 */
public static ListenableFuture<PaymentSession> createFromBitcoinUri(final BitcoinURI uri, final boolean verifyPki, @Nullable final TrustStoreLoader trustStoreLoader)
        throws PaymentProtocolException {
    String url = uri.getPaymentRequestUrl();
    if (url == null)
        throw new PaymentProtocolException.InvalidPaymentRequestURL("No payment request URL (r= parameter) in BitcoinURI " + uri);
    try {
        return fetchPaymentRequest(new URI(url), verifyPki, trustStoreLoader);
    } catch (URISyntaxException e) {
        throw new PaymentProtocolException.InvalidPaymentRequestURL(e);
    }
}
 
开发者ID:Grant-Redmond,项目名称:cryptwallet,代码行数:21,代码来源:PaymentSession.java

示例4: fromBitcoinUri

import org.bitcoinj.uri.BitcoinURI; //导入方法依赖的package包/类
public static PaymentIntent fromBitcoinUri(final BitcoinURI bitcoinUri)
{
    final Address address = bitcoinUri.getAddress();
    final Output[] outputs = address != null ? buildSimplePayTo(bitcoinUri.getAmount(), address) : null;
    final String bluetoothMac = (String) bitcoinUri.getParameterByName(Bluetooth.MAC_URI_PARAM);
    final String paymentRequestHashStr = (String) bitcoinUri.getParameterByName("h");
    final byte[] paymentRequestHash = paymentRequestHashStr != null ? base64UrlDecode(paymentRequestHashStr) : null;

    return new PaymentIntent(PaymentIntent.Standard.BIP21, null, null, outputs, bitcoinUri.getLabel(), bluetoothMac != null ? "bt:"
            + bluetoothMac : null, null, bitcoinUri.getPaymentRequestUrl(), paymentRequestHash);
}
 
开发者ID:soapboxsys,项目名称:ombuds-android,代码行数:12,代码来源:PaymentIntent.java


注:本文中的org.bitcoinj.uri.BitcoinURI.getPaymentRequestUrl方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。