Problem to get the nextPageToken and the prevPage Token in API Blogger (v3)
Juan Castela Martínez <[email protected]>
| Newsgroups | gmane.comp.web.blogger.api |
|---|---|
| Message-ID | <[email protected]> |
Hi again gys!,
I've the problem indicated in the subject. When try get those values the
webservice to me returned undefined. I'm using jQuery to send the
information through ajax. The code is the next:
function(numPost, label, token){
var strUrl;
if(token.isEmpty()){
strUrl=';https://www.googleapis.com/blogger/v3/blogs/';+blogid+'/posts?labels='+encodeURI(label)+'&orderBy=updated&pageToken='+token+'&maxResults='+numPost+'&key='+apikey
}else{
strUrl='https://www.googleapis.com/blogger/v3/blogs/'+blogid+'/posts?labels='+encodeURI(label)+'&orderBy=updated&maxResults='+numPost+'&key='+apikey
}
$.ajax({
cache:false,
dataType:'jsonp',
url:strUrl,
success:function(data, textStatus, jqXHR){
var items=[];
nextToken=data.nextPageToken;
prevToken=data.prevPageToken;
$.each(data.items, function(index, value){
items.push(value.title);
});
},
error:function(jqXHR, textStatus, errorThrown){
alert("Error JSON:\n\nXMLHttpRequest object:
"+jqXHR+"\n\nError type: "+textStatus+"\n\nHTTP:
"+errorThrown);
}
});
}
If I put an alert to show nextToken and prevToken values, those values
return undefined.
Thanks for your help and patience.
--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/bloggerdev.
For more options, visit https://groups.google.com/d/optout.