Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am completely stuck on this issue so your help is greatly appreciated!

I simply need to pull the ValidationCode out of this existing XML object.

Here's is what I get when I do:

print_r($response);

TheResponse Object ( [ResponseText] => xxxxxxxxx [ResponseXml] => SimpleXMLElement Object ( [ValidationRequest] => SimpleXMLElement Object ( [AccountSid] => xxxxxxxx [PhoneNumber] => +15555555555 [FriendlyName] => SimpleXMLElement Object ( ) [ValidationCode] => 601532 ) ) [HttpStatus] => 200 [Url] => https://api.dddddd.com//2010-04-01/Accounts/xxxxxx/OutgoingCallerIds [QueryString] => [IsError] => [ErrorMessage] => )

How in the WORLD do I access that Validation Code using php?

Thank you for your assistance!

share|improve this question

2 Answers

up vote 1 down vote accepted
$code = $response->ResponseXml->ValidationRequest->ValidationCode;
share|improve this answer
Life saver! Thank you friend. I'll accept your answer as soon as it lets me. – Jeff Long Jan 21 '12 at 3:10
$ValidationCode=$response->ResponseXml->ValidationRequest->ValidationCode;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.