Skip to content

Releases: qiscus/QiscusCore-iOS

Qiscus Chat SDK (core) v1.10.3

10 Aug 08:52
Compare
Choose a tag to compare

Changelog :

  • add config enable refresh token

Qiscus Chat SDK (core) v1.10.2

25 Jul 09:54
Compare
Choose a tag to compare

Changelog :

  • Fix race condition when logout-login

Qiscus Chat SDK (core) v1.10.1

13 Dec 08:56
Compare
Choose a tag to compare

Changelog :

  • Update lib Qiscus Realtime

Qiscus Chat SDK (core) v1.10.0

25 Oct 08:18
Compare
Choose a tag to compare

Changelog :

  • New Flow expired token

for implementation manually calling the API refresh token, can use this code.

 func onRefreshToken(event: QiscusRefreshTokenEvent) {
        if event == .isUnauthorized {
            //need to force re login
        }else if event == .isTokenExpired {
            //implement call api refresh token if auto refresh token is false from BE (by default is true), request contact us for set auto refresh false
        }
    }

***Note :

  • Please contact us, if you want to implementation the flow expired token and manually or automatic call API refresh token

Qiscus Chat SDK (core) v1.9.0

29 Sep 09:20
Compare
Choose a tag to compare

Changelog :

  • Support XCode 14

Qiscus Chat SDK (core) v1.8.0

20 Sep 03:33
Compare
Choose a tag to compare

Changelog :

  • Support ExpiredToken

for example :

  • if you get error when call API qiscusCore with error code 403, please call api refreshToken
 QiscusCore.shared.getAllChatRooms(page: 1, limit: 50) { rooms, meta in
            print("sucess get data")
        } onError: { error in
            // if error equal 403  print("error expired token")
            //call api refreshToken
            QiscusCore.shared.refreshToken { isSuccess in
                print("check isSuccess =\(isSuccess)")
            } onError: { error in
                print("error =\(error.message)")
            }

        }

Qiscus Chat SDK (core) v1.7.0

02 Sep 05:58
Compare
Choose a tag to compare

Changelog:

  • Support SPM

Qiscus Chat SDK (core) v1.6.1

14 Jul 09:24
Compare
Choose a tag to compare

Improve appConfig Sync and SyncEvent

Qiscus Chat SDK (core) v1.6.0

13 Oct 10:04
Compare
Choose a tag to compare

Qiscus Chat SDK (core) v1.5.15

09 Sep 02:20
Compare
Choose a tag to compare

Changelog :

  • Prevent Crash on ios os 14.6++ when connecting to realtime