Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hdodenhof/xing-android-sdk
An Android SDK for accessing the XING API
https://github.com/hdodenhof/xing-android-sdk
Last synced: about 1 month ago
JSON representation
An Android SDK for accessing the XING API
- Host: GitHub
- URL: https://github.com/hdodenhof/xing-android-sdk
- Owner: hdodenhof
- License: apache-2.0
- Created: 2014-12-11T20:12:33.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-08-27T14:13:18.000Z (over 9 years ago)
- Last Synced: 2024-10-14T19:51:13.823Z (3 months ago)
- Language: Java
- Size: 334 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# XING Android SDK
An Android SDK for accessing the XING API.
*WARNING: this is still under heavy development!*
## Getting Started
* Create an app for the XING API at the [XING Ceveloper Center](https://dev.xing.com/applications) to obtain a consumer key and consumer secret. During the registration process set the OAuth callback domain to `xingapi://callback`.
* Add a dependency to this SDK to your app project - see below for details.
* Access the XING API by creating a new `XingApiClient` with your consumer key and consumer secret.
* Have a look at the included sample application for details.## Gradle
```
repositories {
...
maven {
url 'http://oss.sonatype.org/content/repositories/snapshots'
}
}...
dependencies {
...
compile 'de.hdodenhof:xing-android-sdk:1.0.0-SNAPSHOT'
}
```## Note
This is not an official product of XING AG, please do not contact them with any issues you might have.
## License
Copyright 2014 Henning Dodenhof
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.