Difference between revisions of "NATS4 REST API Record Member Login"
From TMM Wiki
Jump to navigationJump to search (Created page with "{{NATS4 Manual | show_api_admin_section = true }} == '''POST /member/recordlogin''' == '''Description''' *The 'member/recordlogin' API endpoint is used to record the logins t...") |
|||
Line 60: | Line 60: | ||
); | ); | ||
− | $url = 'http:// | + | $url = 'http://domain/api/member/recordlogin'; |
$headers = array( | $headers = array( | ||
Line 85: | Line 85: | ||
import json | import json | ||
− | url = 'http:// | + | url = 'http://domain/api/member/recordlogin' |
payload = { | payload = { | ||
Line 117: | Line 117: | ||
var options = { | var options = { | ||
− | url: 'http:// | + | url: 'http://domain/api/member/recordlogin', |
method: 'POST', | method: 'POST', | ||
form: data, | form: data, |
Revision as of 16:38, 14 March 2015
POST /member/recordlogin
Description
- The 'member/recordlogin' API endpoint 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'