Bitcoin Forum
June 23, 2024, 08:41:35 PM *
News: Voting for pizza day contest
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 [96] 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 »
1901  Economy / Services / Re: Looking for a PHP dev that can give me some Pseudo-code for Dwolla API [2BTC] on: September 27, 2011, 12:41:37 AM
If i var dump the $client when I first connect i get this

object(SoapClient)#2 (2) { ["_soap_version"]=> int(1) ["sdl"]=> resource(6) of type (Unknown) }
1902  Other / Off-topic / Re: What do you live for? on: September 27, 2011, 12:37:46 AM
Wow what a great post, very enlightening and explanatory.

I like how you noted that serving others seems like an act of "righteousness" and self sacrificing of your time when this is far from the truth, as the server/giver gets ultimate satisfaction of it all in the end leading to ut-right-most-self-ish-ness.

As for me and my house I live for the Truth, and the world is my House.
I find it already difficult to properly communicate the truth and I'ts very easy even if you were truthfull 100% of the time to be still mis-understood,
 I can only imagine how difficult it is for the lairs, cheaters, and the scammers....
1903  Economy / Services / Re: Looking for a PHP dev that can give me some Pseudo-code for Dwolla API [2BTC] on: September 27, 2011, 12:13:17 AM
I attempted to use the associative array, and made sure all the variables match exactly from any spelling differences. Still getting this error:

Quote
SoapFault exception: [a:DeserializationFailed] The formatter threw an exception while trying to deserialize the message: Error in deserializing body of request message for operation 'RequestPaymentKey'. End element 'Body' from namespace 'http://schemas.xmlsoap.org/soap/envelope/' expected. Found element 'param1' from namespace ''. Line 2, position 158. in /home/swiftbitcoins/purchase_order.php:31 Stack trace: #0 /home/swiftbitcoins/purchase_order.php(31): SoapClient->__soapCall('RequestPaymentK...', Array) #1 {main}ERROR

using this code
Code:
$client = new SoapClient("https://www.dwolla.com/api/TestAPI.svc?wsdl");
$params = array(
  'ApiKey' => $apiKey,
  'ApiCode' => $apiCode,
  'Amount' => $amount,
  'Description' => $description,
  'CustomerID' => $customerId
);


try{
$client->__soapCall("RequestPaymentKey", $params);
}catch(Exception $e){
echo $e;
echo "ERROR";
}

Just so we are clear ApiCode is really the "Secret" key right?
1904  Economy / Services / Re: Looking for a PHP dev that can give me some Pseudo-code for Dwolla API [2BTC] on: September 26, 2011, 01:07:12 AM
Is your amount supposed to be a string or int?

I don't think (int) can accept decimals?

$amount=123;

Why do you have int, then? Tongue

Becuase I previously tryed a varchar but doing the value in quotes.
I thought you ment like forceing php to do int like this

$amount = (int) 123;

If i do that I wont accept decimals (as far as i know)
1905  Other / Off-topic / Re: Oh NOES! on: September 26, 2011, 12:25:00 AM
ITS NOT WORKING!?!

Infact I think she is sticking her tounge out!!! THEY LIKE IT OMG!!!
1906  Other / Off-topic / Re: Oh NOES! on: September 25, 2011, 11:54:45 PM
there pulling closer... I can feel this feeling that says "What is snookie doing this week?"

I need help guys..!>!>!?!?!? OMG what do i do!?

Where is the jersey shore spray!?
1907  Economy / Services / Re: Looking for a PHP dev that can give me some Pseudo-code for Dwolla API [2BTC] on: September 25, 2011, 11:52:56 PM
Is your amount supposed to be a string or int?

I don't think (int) can accept decimals?
1908  Other / Off-topic / Oh NOES! on: September 25, 2011, 11:29:48 AM
I think I have jersey shore fever... ZOMH!
http://www.youtube.com/watch?v=EyBwZeoxISk&feature=fvst
1909  Economy / Speculation / Re: Bitcoin Technical Analysis on: September 25, 2011, 11:27:06 AM
I voted "Same as now" as there are pretty big walls in the $5-$6 range. But I am not an active trader so it could be that MtGox just looks like it has huge walls in my perspective
1910  Economy / Services / Re: Looking for a PHP dev that can give me some Pseudo-code for Dwolla API [2BTC] on: September 25, 2011, 09:48:27 AM
I think it's not picking up the parameters correctly as no matter if I try it my way or your way it just gives me this error about Deserlization or somthing of the sort....

Code:
Fatal error: Uncaught SoapFault exception: [a:DeserializationFailed] The formatter threw an exception while trying to deserialize the message: Error in deserializing body of request message for operation 'RequestPaymentKey'. End element 'Body' from namespace 'http://schemas.xmlsoap.org/soap/envelope/' expected. Found element 'param1' from namespace ''. Line 2, position 158. in /home/swiftbitcoins/purchase_order.php:21 Stack trace: #0 /home/swiftbitcoins/purchase_order.php(21): SoapClient->__soapCall('RequestPaymentK...', Array) #1 {main} thrown in /home/swiftbitcoins/purchase_order.php on line 21 

Here is the code I use slightly modified you for got the "CustomerId" value

<?php
Code:

$apiKey='0AwevY8CPVHiT2wxoxIl';
$apiCode='oDz1XJ1bjbaTk0i5RMcoEq';
$description='Testing CIB Testing';

$amount=123;

$customerId = "812-504-6527";

$client = new SoapClient("https://www.dwolla.com/api/TestAPI.svc?wsdl");
$client->__soapCall("RequestPaymentKey", array($apiKey, $apiCode, $amount, $description, $customerId));

//RequestPaymentKey returns a boolean: true if the request was successfully processed, False or exception otherwise

if($client)
{
     //function executed succesfully
}
else
{
    //it didn't
}

?>
1911  Economy / Services / Re: Looking for a PHP dev that can give me some Pseudo-code for Dwolla API [2BTC] on: September 25, 2011, 07:15:04 AM
Thanks a bunch i will report back with my results you should give me BTC address just for the effort already!
1912  Other / Politics & Society / Re: For the record, an ad hominem is not a valid argument. on: September 25, 2011, 06:01:13 AM
TL:DR

I think any fallacy is overly used in forums and online debates... heck they are over used in real life all the time for people to use on each other.

Educate your self today and memorize these fallacies!
http://en.wikipedia.org/wiki/List_of_fallacies
1913  Economy / Services / Re: Looking for a PHP dev that can give me some Pseudo-code for Dwolla API [2BTC] on: September 25, 2011, 05:58:26 AM
excellent documentation, I didn't learn about SOAP until like just now although I've heard of it, i think I'm missing something here..... take a look at my format

<?php
Code:
$client = new SoapClient("https://www.dwolla.com/api/API.svc?wsdl");
//Attempt to buy something with dwolla form
$client->RequestPaymentKey("0Aw5gdfgfdgdfgdfgJjfsjdfsdfsdfsdfsfsfsfsdfgfgdj2NA+r0QUFnTeofqvRPl",
"oDzdfgdfgdrgdfvsdfwefvtdbyndgsjfgdgfdghjgklgVwga7qbWoL",
"1.50",
"Testing testing testing",
"812-504-6527");
print_r($client);

var_dump($client->__getFunctions());
?>

oh yeah error is like this
Quote from: error
Fatal error: Uncaught SoapFault exception: [a:DeserializationFailed] The formatter threw an exception while trying to deserialize the message: Error in deserializing body of request message for operation 'RequestPaymentKey'. End element 'Body' from namespace 'http://schemas.xmlsoap.org/soap/envelope/' expected. Found element 'param1' from namespace ''. Line 2, position 158. in /home/swiftbitcoins/purchase_order.php:16 Stack trace: #0 /home/swiftbitcoins/purchase_order.php(16): SoapClient->__call('RequestPaymentK...', Array) #1 /home/swiftbitcoins/purchase_order.php(16): SoapClient->RequestPaymentKey('s:50:"0AwevY8CP...', 'oDz1XJ1bjbaTk0i...', '1.50', 'Testing testing...', '812-504-6527') #2 {main} thrown in /home/swiftbitcoins/purchase_order.php on line 16
1914  Bitcoin / Bitcoin Technical Support / Re: Bitcoin client mirrors and checksums on: September 25, 2011, 05:56:23 AM
http://cheaperinbitcoins.com/download/bitcoin-0.4.0/bitcoin-0.4.0-linux.tar.gz
http://cheaperinbitcoins.com/download/bitcoin-0.4.0/bitcoin-0.4.0-macosx.dmg
http://cheaperinbitcoins.com/download/bitcoin-0.4.0/bitcoin-0.4.0-win32-setup.exe
http://cheaperinbitcoins.com/download/bitcoin-0.4.0/bitcoin-0.4.0-win32.zip

MOAR MIRRORS!
1915  Economy / Services / Re: Looking for a PHP dev that can give me some Pseudo-code for Dwolla API [2BTC] on: September 25, 2011, 05:50:39 AM
Bounty is still up for grabs if someone wants to assist in writing some psuedo-code
1916  Economy / Services / Re: Looking for a PHP dev that can give me some Pseudo-code for Dwolla API [2BTC] on: September 25, 2011, 05:40:49 AM
excellent documentation, I didn't learn about SOAP until like just now although I've heard of it, i think I'm missing something here..... take a look at my format

<?php
Code:
$client = new SoapClient("https://www.dwolla.com/api/API.svc?wsdl");
//Attempt to buy something with dwolla form
$client->RequestPaymentKey("0Aw5gdfgfdgdfgdfgJjfsjdfsdfsdfsdfsfsfsfsdfgfgdj2NA+r0QUFnTeofqvRPl",
"oDzdfgdfgdrgdfvsdfwefvtdbyndgsjfgdgfdghjgklgVwga7qbWoL",
"1.50",
"Testing testing testing",
"812-504-6527");
print_r($client);

var_dump($client->__getFunctions());
?>
1917  Economy / Services / Looking for a PHP dev that can give me some Pseudo-code for Dwolla API [2BTC] on: September 25, 2011, 04:20:09 AM
I will give 2 BTC to anyone that can give me some pseudo code or near complete and working code with explination or even simple comments of what everything is doing( i can figure things out pretty quickly if its done in front of my eyes so nothing too specific)

Just go to this link and at the end of your response post your BTC address
http://stackoverflow.com/questions/7543582/integrating-dwolla-with-php-with-their-api
1918  Bitcoin / Bitcoin Technical Support / Dwolla + PHP support API oAuth2 integration [2BTC Bounty] on: September 25, 2011, 04:11:49 AM
Okay I'm having the most difficult time with Dwolla API + PHP You can find more of my delimma over at overstack exchange http://stackoverflow.com/questions/7543582/integrating-dwolla-with-php-with-their-api

I will accommodate you with your answer just post your Bitcoin address right under you answer and I will give you 2 BTC to give me an easy to understand Pseduo code or a link to a working library!


I'm a trust worthy source as I run the website CheaperInBitcoins.com and done quite a few of successful purchases!
1919  Other / Beginners & Help / Re: Request from a new user :) on: September 25, 2011, 02:15:43 AM
Well buttcoin if you werent too busy trolling youd realise that he already thanked somebody for receving a bitcoin in donation. If this wasnt the addressed use for the donation youd think the OP would at least report the donating address used if he wasnt a scaer.

Why should he?  He already thanked someone for donating.  What's the point of saying you've received a donation if it wasn't true?  I don't get it.

Ah, by the way, I also could use a small help!  Smiley

12A9xBvwZMbDCyszohAki3J721HsCnNbML

To get rep?

Manipulation of one of the key psychological principles of influence --> Social proof.

If no-one is seen to be donating then the OP is at risk of falling casualty to the bystander effect (everyone conforms with each other and does nothing). Contrary, if others see that people are donating, they too can be influenced by that and feel like chipping in for support.

Wikipedia entries for bystander effect and social proof will explain it better.

Xenland was correct to apply the label of scammer to OP, and buttcoin was a bonehead for applying the label 'bonehead' to Xenland.

Gotta love wikipedia! Cheesy
1920  Other / Off-topic / Re: Cheaper In Bitcoins First phone call yeeess!! on: September 24, 2011, 11:06:57 PM
My mistake its actually $8/month I was thinking of my previous providers billing
http://www.nextiva.com/products/connect.html

UPDATE: cheaper In Bitcoins will be adding routers and some books within this week keep checking!
Pages: « 1 ... 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 [96] 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!