You can get to the threads by nodeid using the
www.example.com/forum/node/1234 where 1234 is the nodeid. Is that what you are looking for or are you looking for API?
from the command line ---- curl
http://www.vbulletin.com/forum/ajax/...l?nodeid=54756
or javascript ---
Code:
$.ajax({
url: 'http://www.vbulletin.com/forum/ajax/api/route/getAbsoluteNodeUrl',
type: "POST",
dataType: 'json',
data: {
nodeid:'547'
},
success: function(response) {
if (response){
alert(response);
}
}
});
The ajax method is hit or miss. On VB 5.2, I don't know why, but if a user is logged in, this js throws an error, but for guests, works as expected.
You can also call the API in the templates using {vb:data}