1.0.10 • Published 6 days ago

parse-server-mural-auth-adapter v1.0.10

Weekly downloads
-
License
ISC
Repository
-
Last release
6 days ago

Parse-server-mural-auth-adapter

Authenticate to parse server with your Mural account

How to use it?

1) Install the module

yarn add parse-server-mural-auth-adapter

2) Add this module when creating ParseServer

import { ParseServer } from 'parse-server'
import muralAuthAdapter from 'parse-server-mural-auth-adapter'
...
const parserServer = new ParseServer({
  ...
  auth: {
    mural: muralAuthAdapter
  }
})

4) Using Mural access token in our project

  • Get Parse access token by POST a raw data to /parse/users
curl -X POST \
  {{host}}/parse/users \
  -H 'content-type: application/json' \
  -H 'x-parse-application-id: {{ParseAppId}}' \
  -d '{
    "authData": {
    	"mural": {
    		"accessToken": "{{accessToken}}",
    		"id": "{{MuralUID}}"
    	}
    }
}'
1.0.9

6 days ago

1.0.8

6 days ago

1.0.7

6 days ago

1.0.6

6 days ago

1.0.5

6 days ago

1.0.4

6 days ago

1.0.10

6 days ago

1.0.3

1 year ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago