1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

はうつーろけぽす

Last updated at Posted at 2016-10-12

#ろけぽすとは

様々な位置情報共有サービスが誕生する中、また@tmytがなんか作ったようです。
拙作の今ココ互換鯖とやや被るところもあるけど気にしない

##どんなの
位置情報の集約と表示に特化したSaaS的なやつ。
公式サイト公式ドキュメントを見たほうが早いかも。
利用規約や料金諸々は後日書くような感じのようです。

##とりあえず動かしてみた

まず、@tmytにコンタクトを取ってクライアントIDを発行してもらいます。

次に、お好みのブラウザで下記urlを開きます。
※client_idとredirect_uriはurlエンコードしてね。redirect_uriは適当に放り込もう

https://locapos.com/oauth/authorize?response_type=token&client_id=<Your ClientID>&redirect_uri=<redirect uri>

すると、以下のように出るので、お好みのサービスで認証しよう
1.png

認証を進めていくと、リダイレクトしていますの画面のソースからトークンが取れるので、適当に保存します。
※ちゃんとリダイレクトして受け取るほうがよさげ

##位置情報を投げてみよう
curlの使える環境で以下のコマンドをサクッと実行しよう

curl -w '\n' -H 'Authorization:Bearer <Your Access Token>' 'https://locapos.com/api/locations/update' --data 'latitude=34.6873316&longitude=135.5238653&heading=0' -XPOST

すると

locpos.png

こんな感じに表示されます。めっちゃらくちん。

ほかの機能はドキュメントが埋まってきたら書きます。たぶん。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?