21294 Posts in 5734 Topics by 2602 members
General Questions
SilverStripe Forums » General Questions » RestfulService Issue getting value of node with namespace
General questions about getting started with SilverStripe that don't fit in any of the categories above.
Moderators: martimiz, Howard, Sean, Ryan M., biapar, Willr, Ingo, swaiba, simon_w
|
Page:
1
|
Go to End | |
| Author | Topic: | 487 Views |
-
RestfulService Issue getting value of node with namespace

12 February 2011 at 9:55am
Hey
I'm trying to build a module to communicate with a blogspot account.
The feed im using is http://ss-moduletest.blogspot.com/feeds/posts/default
I've included the method im using below i can get the author information but cant seem to access anything contained in a namespace.
I've checked the api documentation but couldn't work it out, any ideas?
public function GetPosts($iMaxResults=false,$iStartIndex,$iPublishedMin,$iPublishedMax) {
$url ='http://ss-moduletest.blogspot.com/feeds/posts/default';
$cache_expiry = 3600;
$params = array();$blogger = new RestfulService($url,$cache_expiry);
$blogger->setQueryString($params);
$con = $blogger->connect();
$dosAuthor = $blogger->getValues($con,'author');
echo '<pre>';
$x = $blogger->getValues($con,'openSearch:totalResults');
print_r($x);
echo '</pre>';
return $blogger->getValues($con,'entry');
}http://api.silverstripe.org/2.4/sapphire/integration/RestfulService.html#methodgetValue
| 487 Views | ||
|
Page:
1
|
Go to Top |

