https://github.com/curityio/ios-idsvr-haapi-sdk-dist
Distribution of the iOS Hypermedia Authentication API (HAAPI) SDK for the Curity Identity Server
https://github.com/curityio/ios-idsvr-haapi-sdk-dist
haapi ios sdk
Last synced: 10 months ago
JSON representation
Distribution of the iOS Hypermedia Authentication API (HAAPI) SDK for the Curity Identity Server
- Host: GitHub
- URL: https://github.com/curityio/ios-idsvr-haapi-sdk-dist
- Owner: curityio
- Created: 2020-11-24T12:42:30.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2025-06-16T08:33:38.000Z (12 months ago)
- Last Synced: 2025-07-28T12:42:45.215Z (10 months ago)
- Topics: haapi, ios, sdk
- Language: Objective-C
- Homepage: https://curity.io/docs/haapi-ios-sdk/latest/
- Size: 126 MB
- Stars: 8
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# IdsvrHaapiSdk
This distribution provides the iOS Hypermedia Authentication API (HAAPI) SDK for the Curity Identity Server. This SDK allows iOS developers to integrate this API into their applications for smarter, simpler login using native UI widgets. It allows for any login method supported by the Curity Identity Server, and strictly follows the principle of REST. The SDK is meant to make the security aspects of consuming this API easier.
For information about the license of this software, refer to [legal.md](legal.md).
## Installation
### CocoaPods
To integrate IdsvrHaapiSdk into your Xcode project, include it in your `Podfile`:
``` ruby
platform :ios, '14.0'
use_frameworks!
target '' do
pod 'IdsvrHaapiSdk'
end
```
Then install it by running `pod install`. More documentation on using CocoaPods is found [here](https://cocoapods.org).
### Swift Package Manager
To integrate IdsvrHaapiSdk using Swift Package Manager include the following dependency in your `Package.swift` file:
``` swift
.package(url: "https://github.com/curityio/ios-idsvr-haapi-sdk-dist")
```