com.xeiam.xchange.examples.mercadobitcoin.InteractiveAuthenticatedExchange Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-examples Show documentation
Show all versions of xchange-examples Show documentation
Provides a set of examples that demonstrate how to use XChange in client applications
The newest version!
package com.xeiam.xchange.examples.mercadobitcoin;
import java.util.Scanner;
import com.xeiam.xchange.Exchange;
import com.xeiam.xchange.ExchangeFactory;
import com.xeiam.xchange.ExchangeSpecification;
import com.xeiam.xchange.mercadobitcoin.MercadoBitcoinExchange;
/**
* @author Felipe Micaroni Lalli
*/
public class InteractiveAuthenticatedExchange {
public static Exchange createInstanceFromDefaultInput() {
Exchange mercadoBitcoin = ExchangeFactory.INSTANCE.createExchange(MercadoBitcoinExchange.class.getName());
ExchangeSpecification exchangeSpecification = mercadoBitcoin.getExchangeSpecification();
Scanner s = new Scanner(System.in);
System.out.println("Enter your API key (chave):");
exchangeSpecification.setApiKey(s.next().trim().toLowerCase());
System.out.println("Enter your secret code (código):");
exchangeSpecification.setSecretKey(s.next().trim().toLowerCase());
System.out.println("Enter your PIN (IMPORTANT: This is your PIN, not your user password):");
exchangeSpecification.setPassword(s.next().trim().toLowerCase());
exchangeSpecification.setUserName("");
System.out.println("Please wait...");
return mercadoBitcoin;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy