{"id":15481579,"url":"https://github.com/qiscus/qiscuscore-ios","last_synced_at":"2026-04-14T06:08:46.815Z","repository":{"id":58422738,"uuid":"104186709","full_name":"qiscus/QiscusCore-iOS","owner":"qiscus","description":"Qiscus Core Chat SDK","archived":false,"fork":false,"pushed_at":"2024-09-18T08:38:52.000Z","size":423343,"stargazers_count":14,"open_issues_count":0,"forks_count":11,"subscribers_count":7,"default_branch":"master","last_synced_at":"2024-10-19T05:15:27.655Z","etag":null,"topics":["chat-sdk","chatbot","message","objective-c","qiscus","qiscus-core","qiscus-sdk","real-time","swift"],"latest_commit_sha":null,"homepage":"http://qiscus.com","language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/qiscus.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-09-20T08:17:41.000Z","updated_at":"2024-09-18T08:38:42.000Z","dependencies_parsed_at":"2024-02-02T02:06:57.273Z","dependency_job_id":"19df6e57-864a-44ab-8c50-c81a44a2e046","html_url":"https://github.com/qiscus/QiscusCore-iOS","commit_stats":{"total_commits":269,"total_committers":5,"mean_commits":53.8,"dds":0.5018587360594795,"last_synced_commit":"2fa8d3295a44f6f6f945100e1b593f835822b0eb"},"previous_names":[],"tags_count":148,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qiscus%2FQiscusCore-iOS","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qiscus%2FQiscusCore-iOS/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qiscus%2FQiscusCore-iOS/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qiscus%2FQiscusCore-iOS/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/qiscus","download_url":"https://codeload.github.com/qiscus/QiscusCore-iOS/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224923395,"owners_count":17392820,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["chat-sdk","chatbot","message","objective-c","qiscus","qiscus-core","qiscus-sdk","real-time","swift"],"created_at":"2024-10-02T05:05:00.245Z","updated_at":"2026-02-24T08:50:33.958Z","avatar_url":"https://github.com/qiscus.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"# [QiscusCore](https://github.com/qiscus) - Messaging and Chat Core API for iOS\n[Qiscus](https://qiscus.com) Enable custom in-app messaging in your Mobile App and Web using Qiscus Chat SDK and Messaging API\n\n[![Platform](https://img.shields.io/badge/platform-iOS-orange.svg)](https://cocoapods.org/pods/QiscusCore)\n[![Languages](https://img.shields.io/badge/language-Objective--C%20%7C%20Swift-orange.svg)](https://github.com/qiscus)\n[![CocoaPods](https://img.shields.io/badge/pod-v3.0.109-green.svg)](https://cocoapods.org/pods/QiscusCore)\n\n\n## Installation Cocoapods\n\n[CocoaPods](https://cocoapods.org) is a dependency manager for Cocoa projects. You can install it with the following command:\n\n```bash\n$ gem install cocoapods\n```\n\nTo integrate QiscusCore into your Xcode project using CocoaPods, specify it in your `Podfile`:\n\n```ruby\nsource 'https://github.com/CocoaPods/Specs.git'\nplatform :ios, '10.0'\nuse_frameworks!\n\ntarget '\u003cYour Target Name\u003e' do\n    pod 'QiscusCore'\nend\n```\n\nThen, run the following command:\n\n```bash\n$ pod install\n```\n\n## Installation Swift Package Manager (SPM)\nYou can use The Swift Package Manager to install QiscusCore by adding the proper description to your Package.swift file:\n\n```\nimport PackageDescription\n\nlet package = Package(\n    name: \"YOUR_PROJECT_NAME\",\n    dependencies: [\n        .package(url: \"https://github.com/qiscus/QiscusCore-iOS.git\", from: \"1.13.1\"),\n    ]\n)\n```\n\n## Installation Carthage \n[Carthage](https://github.com/Carthage/Carthage) is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks. To integrate QiscusCore into your Xcode project using Carthage, specify it in your Cartfile:\n\n```bash\n$ github \"qiscus/QiscusCore-iOS\" \"carthage-support\"\n```\n\n## Setup\n\n### Init AppId\nInitiate qiscus with app id\n\n```\nQiscusCore.setup(WithAppID: \"yourAppId\")\n```\n\n\n## Authentication\n\n### Authentication with UserID \u0026 UserKey\n\n```\nQiscusCore.login(userID: userID, userKey: key) { (result, error) in\n    if result != nil {\n        print(\"success\")\n    }else {\n        print(\"error \\(String(describing: error?.message))\")\n    }\n}\n```\n\n### Authentication with JWT\n\n```\nQiscusCore.login(withIdentityToken: identityToken, completion: { (result, error) in\n     if result != nil {\n        print(\"success\")\n     }else{\n        print(\"error \\(String(describing: error?.message))\")\n    }\n})\n```\n\n\n## Docs\n\nfor other documents can be viewed on this page, [Qiscus Docs](https://documentation.qiscus.com/chat-sdk-ios)\n\n\n## Example\n\nYou can download example how to use QiscusCore with advance usage from [QiscusCore Example](https://github.com/qiscus/qiscus-chat-sdk-ios-sample).\n\n## Security Disclosure / Question / Other\n\nIf you any security disclosure, question, or other, you can make [Ticket](https://support.qiscus.com/hc/en-us/requests/new)\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqiscus%2Fqiscuscore-ios","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fqiscus%2Fqiscuscore-ios","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqiscus%2Fqiscuscore-ios/lists"}