Difference between revisions of "NATS4 REST API Record Member Login"
From TMM Wiki
Jump to navigationJump to search(4 intermediate revisions by one other user not shown) | |||
Line 2: | Line 2: | ||
| show_api_admin_section = true | | show_api_admin_section = true | ||
}} | }} | ||
− | == '''POST /member/ | + | == '''POST /member/login''' == |
'''Description''' | '''Description''' | ||
− | *The 'member/ | + | *The 'member/login' API action is used to record the logins to your membership sites in NATS. This function works similarly to [[Nats4 Member Logging|Member Logging]]. |
'''Resource URL''' | '''Resource URL''' | ||
− | *<nowiki>http://domain/api/member/ | + | *<nowiki>http://domain/api/member/login</nowiki> |
*Replace domain with the nats domain | *Replace domain with the nats domain | ||
Line 60: | Line 60: | ||
); | ); | ||
− | $url = 'http://domain/api/member/ | + | $url = 'http://domain/api/member/login'; |
$headers = array( | $headers = array( | ||
Line 85: | Line 85: | ||
import json | import json | ||
− | url = 'http://domain/api/member/ | + | url = 'http://domain/api/member/login' |
payload = { | payload = { | ||
Line 117: | Line 117: | ||
var options = { | var options = { | ||
− | url: 'http://domain/api/member/ | + | url: 'http://domain/api/member/login', |
method: 'POST', | method: 'POST', | ||
form: data, | form: data, | ||
Line 144: | Line 144: | ||
'''Curl''' | '''Curl''' | ||
<pre> | <pre> | ||
− | curl -X POST 'http://domain/api/member/ | + | curl -X POST 'http://domain/api/member/login' -H "api-key: 44b5498dbcb481a0d00b404c0169af62" -H "api-username: tmm1phrvezsbu" -H "Content-Type: application/x-www-form-urlencoded" -d 'username=chrometest6&siteid=1&ip=10.10.10.175' |
</pre> | </pre> | ||
+ | == '''Legacy Changes''' == | ||
+ | '''''Use the following documentation changes if you are using the REST API with NATS versions below <font style="color: red;">4.1.13.5</font>:''''' | ||
+ | |||
+ | '''Resource URL''' | ||
+ | *<nowiki>http://domain/api/member/recordlogin</nowiki> | ||
+ | *Replace domain with the nats domain | ||
+ | |||
+ | '''[[NATS4_REST_API_Overview#Allowed_HTTP_Request_Methods|Request Method''']] | ||
+ | *POST | ||
+ | |||
+ | '''Response Format''' | ||
+ | *JSON | ||
+ | |||
+ | '''[[NATS4_REST_API_Overview#Authentication|Authentication]]''' | ||
+ | *HTTP headers | ||
[[Category:NATS4 API Articles]] | [[Category:NATS4 API Articles]] |
Latest revision as of 09:13, 10 October 2017
POST /member/login
Description
- The 'member/login' API action is used to record the logins to your membership sites in NATS. This function works similarly to Member Logging.
Resource URL
- http://domain/api/member/login
- Replace domain with the nats domain
- POST
Response Format
- JSON
- HTTP headers
Parameters
Paremeters must be sent with the request body. The examples below show the parameters sent as x-www-form-urlencoded
- username: The username
- type: string
- required
- siteid: The site id
- type: integer
- required
- ip: The ip address
- type: string
- required
Example Request
POST
http://domain/api/member/recordlogin
- Response:
"SUCCESS: 191"
Example Code
PHP
<?php $curl = curl_init(); $data = array( 'username' => 'chrometest6', 'siteid' => '1', 'ip' => '10.10.10.175' ); $url = 'http://domain/api/member/login'; $headers = array( 'api-key: 44b5498dbcb481a0d00b404c0169af62', 'api-username: tmm1phrvezsbu' ); curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_POST, 1); curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($data)); $resp = curl_exec($curl); //dumps an associative array representation of the json var_dump(json_decode($resp, true)); // Close request to clear up some resources curl_close($curl);
Python
- This example requires pip and the request library which can be installed via pip by: 'pip install requests'
import requests import json url = 'http://domain/api/member/login' payload = { 'username': 'chrometest6', 'siteid': '1', 'ip': '10.10.10.175' } headers = { 'api-key': '44b5498dbcb481a0d00b404c0169af62', 'api-username': 'tmm1phrvezsbu' } res = requests.post(url, data=payload, headers=headers) print res.text
node.js
- This example requires npm and the request module which can be installed via npm by: 'npm install request'
var request = require('request'); data = { 'username': 'chrometest6', 'siteid': '1', 'ip': '10.10.10.175' } var options = { url: 'http://domain/api/member/login', method: 'POST', form: data, json: true, headers: { 'api-key': '44b5498dbcb481a0d00b404c0169af62', 'api-username': 'tmm1phrvezsbu' } }; function callback(error, response, body) { if (!error && response.statusCode == 200) { console.log(body); } else{ console.log(body); } } request(options, callback);
Curl
curl -X POST 'http://domain/api/member/login' -H "api-key: 44b5498dbcb481a0d00b404c0169af62" -H "api-username: tmm1phrvezsbu" -H "Content-Type: application/x-www-form-urlencoded" -d 'username=chrometest6&siteid=1&ip=10.10.10.175'
Legacy Changes
Use the following documentation changes if you are using the REST API with NATS versions below 4.1.13.5:
Resource URL
- http://domain/api/member/recordlogin
- Replace domain with the nats domain
- POST
Response Format
- JSON
- HTTP headers