Bitcoin Forum

Other => Beginners & Help => Topic started by: ravenlord on June 16, 2011, 06:29:04 PM



Title: Searching JAVA-Coder for BTC
Post by: ravenlord on June 16, 2011, 06:29:04 PM
Hi there,

As my time is currently limited, I'm looking for someone to solve one small problem in my software:

I need a Java-Method to Access MT-Gox API via POST-Requests. The interface looks like this:

public String performPOST(final String _url, final String _user, final String _pwd)
and the method should return the JSON, mtgox returns.
For example:
https://mtgox.com/code/getFunds.php
returns {"usds":XXXXXX,"btcs":XXXXXX}

No other method is required, the JSON is processed somewhere else.

Would be glad to get an offer and a solution ;)


Title: Re: Searching JAVA-Coder for BTC
Post by: ravenlord on June 18, 2011, 06:03:22 PM
Nobody interessted??


Title: Re: Searching JAVA-Coder for BTC
Post by: vector76 on June 18, 2011, 06:07:41 PM
I have a solution that does what you're looking for.

http://lmgtfy.com/?q=java+post


Title: Re: Searching JAVA-Coder for BTC
Post by: ravenlord on June 19, 2011, 10:53:45 AM
Vector: Thanks a lot, I already have a POST Request working, but there seems to be some issue with the Post-Parameters...



Title: Re: Searching JAVA-Coder for BTC
Post by: elk-tamer on June 19, 2011, 01:41:05 PM
Vector: Thanks a lot, I already have a POST Request working, but there seems to be some issue with the Post-Parameters...


What sort of error are you seeing? Why not post it on here, get it solved for free and then others who have the same problem will be able to find the solution.

My wild guess would be that you're not encoding the strings you're posting, btw.