Log in

View Full Version : Please Help, How to make client for used API.


sekel
07-09-2014, 05:53 PM
from
http://www.vbulletin.com/vbcms/content.php/367-API-Overview
So here's an example of the request URL:

http://www.yourforumurl.com/api.php?api_m=forum_markread&api_c=clientid&api_s=accesstoken&api_sig=signature&api_v=1&b=value1&a=value2

From the example, you'll see:
api.php specific params are prefixed with 'api_'
api_m = method name
api_c = ClientID.
api_s = Access token.
api_sig = signature of the request
api_v = the api version called by the request
b=value1&a=value2 are the HTTP GET params accepted by the method (forum_markread) of the API

how to make / put database client ( client id, client name token and other ) .?

Thanks

tbworld
07-09-2014, 06:27 PM
If you would like better assistance, please post or PM the code that you need assistance with, so we do not have to recreate a test case. :)
In this case you may/may-not be asking the correct question. :)

sekel
07-10-2014, 04:48 AM
My question is how to make a clientid in vbuleetin API?

Please see link API overview, http://www.vbulletin.com/vbcms/conte...7-API-Overview
in there you can see query for clientid, client token and other.
So here's an example of the request URL:

http://www.yourforumurl.com/api.php?...alue1&a=value2

From the example, you'll see:
api.php specific params are prefixed with 'api_'
api_m = method name
api_c = ClientID.
api_s = Access token.
api_sig = signature of the request
api_v = the api version called by the request
b=value1&a=value2 are the HTTP GET params accepted by the method (forum_markread) of the API

i go to the database, and found table "apiclient".

1. apiclientid int(10)
2. secret varchar(32)
3. apiaccesstoken varchar(32)
4. userid int(10)
5. clienthash varchar(32)
6. clientname varchar(250)
etc..

i want make other application like store, the login store same database vbulletin user table.
but i don't know where put client data. in admincp i found only vbulletin API key and log.

--------------- Added 1404982729 at 1404982729 ---------------

now is ok, i put manual to database table.
thanks