mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-03-13 14:21:04 +08:00
feat(linkedin): delete plugin
BREAKING: Removes linked in plugin (https://engineering.linkedin.com/blog/2018/12/developer-program-updates) closes: #2925
This commit is contained in:
parent
3d8cdde7eb
commit
64230319a2
@ -1,130 +0,0 @@
|
|||||||
import { Cordova, IonicNativePlugin, Plugin } from '@ionic-native/core';
|
|
||||||
import { Injectable } from '@angular/core';
|
|
||||||
|
|
||||||
export type LinkedInLoginScopes = 'r_basicprofile' | 'r_emailaddress' | 'rw_company_admin' | 'w_share';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @name LinkedIn
|
|
||||||
* @description
|
|
||||||
* A Cordova plugin that lets you use LinkedIn Native SDKs for Android and iOS.
|
|
||||||
*
|
|
||||||
* Please see the [plugin's repo](https://github.com/zyramedia/cordova-plugin-linkedin#installation) for detailed installation steps.
|
|
||||||
*
|
|
||||||
* @usage
|
|
||||||
* ```typescript
|
|
||||||
* import { LinkedIn } from '@ionic-native/linkedin/ngx';
|
|
||||||
*
|
|
||||||
* constructor(private linkedin: LinkedIn) { }
|
|
||||||
*
|
|
||||||
* ...
|
|
||||||
*
|
|
||||||
* // check if there is an active session
|
|
||||||
* this.linkedin.hasActiveSession().then((active) => console.log('has active session?', active));
|
|
||||||
*
|
|
||||||
* // login
|
|
||||||
* const scopes = ['r_basicprofile', 'r_emailaddress', 'rw_company_admin', 'w_share'];
|
|
||||||
* this.linkedin.login(scopes, true)
|
|
||||||
* .then(() => console.log('Logged in!'))
|
|
||||||
* .catch(e => console.log('Error logging in', e));
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* // get connections
|
|
||||||
* this.linkedin.getRequest('people/~')
|
|
||||||
* .then(res => console.log(res))
|
|
||||||
* .catch(e => console.log(e));
|
|
||||||
*
|
|
||||||
* // share something on profile
|
|
||||||
* const body = {
|
|
||||||
* comment: 'Hello world!',
|
|
||||||
* visibility: {
|
|
||||||
* code: 'anyone'
|
|
||||||
* }
|
|
||||||
* }
|
|
||||||
*
|
|
||||||
* this.linkedin.postRequest('~/shares', body)
|
|
||||||
* .then(res => console.log(res))
|
|
||||||
* .catch(e => console.log(e));
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* ```
|
|
||||||
*/
|
|
||||||
@Plugin({
|
|
||||||
pluginName: 'LinkedIn',
|
|
||||||
plugin: 'cordova-plugin-linkedin',
|
|
||||||
pluginRef: 'cordova.plugins.LinkedIn',
|
|
||||||
repo: 'https://github.com/zyra/cordova-plugin-linkedin',
|
|
||||||
install: 'ionic cordova plugin add cordova-plugin-linkedin --variable APP_ID=YOUR_APP_ID',
|
|
||||||
installVariables: ['APP_ID'],
|
|
||||||
platforms: ['Android', 'iOS']
|
|
||||||
})
|
|
||||||
@Injectable()
|
|
||||||
export class LinkedIn extends IonicNativePlugin {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Login with the LinkedIn App
|
|
||||||
* @param scopes {string[]} Scopes to authorize
|
|
||||||
* @param promptToInstall {boolean} set to true to prompt the user to download the LinkedIn app if it's not installed
|
|
||||||
* @return {Promise<any>}
|
|
||||||
*/
|
|
||||||
@Cordova()
|
|
||||||
login(scopes: LinkedInLoginScopes[], promptToInstall: boolean): Promise<any> {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Clears the current session
|
|
||||||
*/
|
|
||||||
@Cordova({ sync: true })
|
|
||||||
logout(): void {
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Make a get request
|
|
||||||
* @param path {string} request path
|
|
||||||
* @return {Promise<any>}
|
|
||||||
*/
|
|
||||||
@Cordova()
|
|
||||||
getRequest(path: string): Promise<any> {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Make a post request
|
|
||||||
* @param path {string} request path
|
|
||||||
* @param body {Object} request body
|
|
||||||
* @return {Promise<any>}
|
|
||||||
*/
|
|
||||||
@Cordova()
|
|
||||||
postRequest(path: string, body: any): Promise<any> {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Opens a member's profile
|
|
||||||
* @param memberId {string} Member id
|
|
||||||
* @return {Promise<any>}
|
|
||||||
*/
|
|
||||||
@Cordova()
|
|
||||||
openProfile(memberId: string): Promise<any> {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Checks if there is already an existing active session. This should be used to avoid unnecessary login.
|
|
||||||
* @return {Promise<boolean>} returns a promise that resolves with a boolean that indicates whether there is an active session
|
|
||||||
*/
|
|
||||||
@Cordova()
|
|
||||||
hasActiveSession(): Promise<boolean> {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Checks if there is an active session and returns the access token if it exists.
|
|
||||||
* @return {Promise<any>} returns a promise that resolves with an object that contains an access token if there is an active session
|
|
||||||
*/
|
|
||||||
@Cordova()
|
|
||||||
getActiveSession(): Promise<any> {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user