Difference between revisions of "NATS4 REST API Record Member Login"
From TMM Wiki
Jump to navigationJump to searchLine 63: | Line 63: | ||
$headers = array( | $headers = array( | ||
− | ' | + | 'api-key: 44b5498dbcb481a0d00b404c0169af62', |
− | ' | + | 'api-username: tmm1phrvezsbu' |
); | ); | ||
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); | curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); | ||
Line 95: | Line 95: | ||
headers = { | headers = { | ||
− | ' | + | 'api-key': '44b5498dbcb481a0d00b404c0169af62', |
− | ' | + | 'api-username': 'tmm1phrvezsbu' |
} | } | ||
Line 122: | Line 122: | ||
json: true, | json: true, | ||
headers: { | headers: { | ||
− | ' | + | 'api-key': '44b5498dbcb481a0d00b404c0169af62', |
− | ' | + | 'api-username': 'tmm1phrvezsbu' |
} | } | ||
}; | }; | ||
Line 144: | Line 144: | ||
'''Curl''' | '''Curl''' | ||
<pre> | <pre> | ||
− | curl -X POST 'http://domain/api/member/recordlogin' -H " | + | curl -X POST 'http://domain/api/member/recordlogin' -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> | ||
[[Category:NATS4 API Articles]] | [[Category:NATS4 API Articles]] |
Revision as of 19:14, 26 March 2015
POST /member/recordlogin
Description
- The 'member/recordlogin' 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/v1/member/recordlogin
- 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/v1/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/recordlogin'; $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/recordlogin' 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/recordlogin', 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/recordlogin' -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'