Add Twitter API verify_credentials endpoint.

This commit is contained in:
Roger Braun 2017-03-20 21:30:44 +01:00
commit 093fd1832d
3 changed files with 71 additions and 1 deletions

View file

@ -0,0 +1,18 @@
defmodule Pleroma.Web.TwitterAPI.Controller do
use Pleroma.Web, :controller
alias Pleroma.Web.TwitterAPI.Representers.UserRepresenter
def verify_credentials(%{assigns: %{user: user}} = conn, _params) do
response = user |> UserRepresenter.to_json
conn
|> json_reply(200, response)
end
defp json_reply(conn, status, json) do
conn
|> put_resp_content_type("application/json")
|> send_resp(status, json)
end
end