PHP / Python / Ruby-Beispiel für die Pfad-API

Path hat eine API veröffentlicht (langsam zu bemerken), also habe ich sie getroffen. Ich habe bisher einige APIs aufgerufen, aber dies ist das erste Mal, dass ich es mit json bestanden habe.

Ich werde jeweils folgendes treffen. GET: /user/:id https://path.com/developers/docs#get-user

POST: /moment/thought https://path.com/developers/docs#post-moment-thought

PHP GET

php::get.php


<?php
header('Content-type: application/json; charset=utf-8');

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://partner.path.com/1/user/self');
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Authorization: Bearer YOUR API TOKEN'));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

$response = curl_exec($ch);
curl_close($ch);

echo $response;

POST

php::post.php


<?php
header('Content-type: application/json; charset=utf-8');

$options = array(
	'thought' => 'PHP Test',
	'private' => 1
);

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://partner.path.com/1/moment/thought');
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Authorization: Bearer YOUR API TOKEN', 'Content-Type: application/json'));
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($options));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

$response = curl_exec($ch);
curl_close($ch);

echo $response;

Python GET

py::get.py


#!/usr/local/bin/python
# -*- coding: utf-8 -*-
print "Content-Type: application/json";

import pycurl

c = pycurl.Curl()
c.setopt(pycurl.URL, 'https://partner.path.com/1/user/self')
c.setopt(pycurl.HTTPHEADER, ['Authorization: Bearer YOUR API TOKEN'])
c.perform()

POST

py::post.py


#!/usr/local/bin/python
# -*- coding: utf-8 -*-
print "Content-Type: application/json";

import pycurl
import json

options = {'thought': 'Python test', 'private': 1}

c = pycurl.Curl()
c.setopt(pycurl.URL, 'https://partner.path.com/1/moment/thought')
c.setopt(pycurl.HTTPHEADER, ['Authorization: Bearer YOUR API TOKEN', 'Content-Type: application/json'])
c.setopt(pycurl.POST, 1)
c.setopt(pycurl.POSTFIELDS, json.dumps(options))
c.perform()

Ruby GET

rb::get.rb


#!/usr/local/bin/ruby
# encoding utf-8
print "Content-Type: text/html\n\n";

require 'faraday'
require 'json'

conn = Faraday::Connection.new(url: 'https://partner.path.com') do |builder|
	builder.use Faraday::Request::UrlEncoded
	builder.use Faraday::Response::Logger
	builder.use Faraday::Adapter::NetHttp
end

response = conn.get do |request|
	request.url '/1/user/self'
	request.headers = {
		'Authorization' => 'Bearer YOUR API TOKEN'
	}
end

json = JSON.parser.new(response.body)
p json.parse

POST

rb::post.rb


#!/usr/local/bin/ruby
# encoding utf-8
print "Content-Type: application/json\n\n";

require 'faraday'
require 'json'

options = {'thought' => 'Ruby Test', 'private' => 1}

conn = Faraday::Connection.new(url: 'https://partner.path.com') do |builder|
	builder.use Faraday::Request::UrlEncoded
	builder.use Faraday::Response::Logger
	builder.use Faraday::Adapter::NetHttp
end

response = conn.post do |request|
	request.url '/1/moment/thought'
	request.headers = {
		'Authorization' => 'Bearer YOUR API TOKEN',
		'Content-Type' => 'application/json'
	}
	request.body = JSON.generate(options)
end

json = JSON.parser.new(response.body)
p json.parse

Recommended Posts

PHP / Python / Ruby-Beispiel für die Pfad-API
Ich habe versucht, die Mastodon-API mit Ruby (Faraday) / Python (Pycurl) / PHP (Curl) zu erreichen.
Java VS PHP VS Python VS Ruby
Über Perl, Python, PHP, Ruby
Dynamischer Proxy mit Python, Ruby, PHP
Boto3 (Python) API-Beispiel, das ich oft benutze
Leicht verständliche Demo von Imagemap Message der LINE Messaging API [PHP] [Ruby] [Python]
Google Cloud Vision API-Beispiel für Python
Verwirklichen Sie den PHP / Python-Generator mit Golang / Ruby
[Grundlegende Grammatik] Unterschiede zwischen Ruby / Python / PHP
Python-Abschlussbeispiel
Ich habe versucht, Mecab mit Python2.7, Ruby2.3, PHP7 zu verwenden
Tipps zum Erreichen der ATND-API mit Python
Gruppierungskombination in Python / Ruby / PHP / Golang (Go)
Trends für das Webanwendungs-Framework 2014 (PHP / Java / Ruby / Python / Perl)
PHP- und Python-Beispiele, die die ChatWork-API treffen
Behandle Primzahlen mit Python / Ruby / PHP / Golang (Go)
python, php, ruby Konvertieren von Dezimalzahlen in n
Schreiben wir jeweils Python, Ruby, PHP, Java und JavaScript
Umgang mit JSON in Ruby, Python, JavaScript, PHP
Ich habe versucht, die API mit dem Python-Client von echonest zu erreichen
[Docker] Tutorial (Python + PHP)
Ruby, Python und Map
Ajax + Python + PostgreSQL-Beispiel
Evernote-API in Python
Liste der Python-APIs für OpenCV3
Python und Ruby teilen sich
C-API in Python 3
TensorFlow API-Memo (Python)
Python - Einfaches Multithread-Beispiel
Ein Hinweis zum Aufrufen der Facebook-API mit dem Python SDK
Überlappende Kombinationen mit Obergrenzen in Python / Ruby / PHP / Golang (Go)
Beispielquelle für das von Java, PHP, Python realisierte Observer-Muster
Beispielbild eines Python-API-Servers für EC2 (öffentliches AMI)
[Anfänger sind besorgt] Was ist besser, Ruby, PHP oder Python?
Hierarchie, Reihenfolge, (doppelte) Kombination in Python / Ruby / PHP / Golang (Go)
Hallo Welt in verschiedenen Sprachen [Python / PHP / Java / Perl / Ruby]