• We are available for any custom works this month
  • Main office: Springville center X264, Park Ave S.01
  • Call us (123) 456-7890 - (123) 555-7891

Langkah Mudah Implemetasi SSO Server di Aplikasi Android anda!

Daftar Sebagai Member

Untuk bisa mendaftarkan aplikasi sebagai client sso server kita harus memiliki akun terlebih dahulu di sso server

https://satulogin.bantenprov.go.id/registrasi

Login Member

Masukan Email/NIK dan password anda di halaman login

https://satulogin.bantenprov.go.id/login

Buat SSO Apps

Buat aplikasi SSO Apps di halaman user pada menu create sso apps

https://satulogin.bantenprov.go.id/member

Dapatkan Appid dan Secret key

Sso Apps yang telah di daftarkan secara otomatis akan mendapatkan appid dan secret key

Http Request

Lakukan http POST request ke endpoint SSO Server

https://satulogin.bantenprov.go.id/api/login

                  curl -X POST \
                  https://satulogin.bantenprov.go.id/api/login \
                  -H 'Accept: application/json' \
                  -H 'Cache-Control: no-cache' \
                  -H 'appid: QGV1XMN0AK' \
                  -H 'credential: customer@google.com' \
                  -H 'password: secret_password' \
                  -H 'secret: hJ8RzWy4PrLtsr4cLTDQI1JXvdUTcInz4CziuoCy' \
                
                    {
                        "status": true,
                        "message": "data user",
                        "data": {
                            "id": 5,
                            "email": "nafis@gmail.com",
                            "username": "nafis",
                            "first_name": null,
                            "last_name": null,
                            "nik": null,
                            "nip": null,
                            "avatar": "1532172936.373.jpg",
                            "tgl_masuk": null,
                            "tgl_pensiun": null,
                            "is_blocked": 0,
                        }
                    }
                  
Success Response

Jika proses http request dengan Bearer token success, maka server sso akan meresponse dengan json response

Fail Response

Jika proses http request dengan Bearer token gagal, maka server sso akan meresponse dengan json response

                    {
                        "status": false,
                        "message": "invalid token",
                        "data": ""
                    }