Hello,
My Name Sameer Vedpathak. I am new for Ionic. i am developing linkedin Signin for my App. But It gives the error like - Client missing or specified more than once.
Controller:
.controller('DashCtrl', function($scope,$cordovaOauth) {
$scope.linkedinLogin = function() {
$cordovaOauth.linkedin('ClientId', 'clientSecret', ['https://www.linkedin.com/uas/oauth2/authorization?response_type=code&client_id=ClientId&redirect_url=http%3A%2F%2Flocalhost%3A8100%2Fauth%2Flinkedin&state=9898989898', 'r_basicprofile', 'r_emailaddress'] , '9898989898').then (function (result) {
console.log("Response Object -> " + JSON.stringify(result));
alert(JSON.stringify(result));
}, function(error) {
console.log("Error -> " + error);
alert(error);
});
Also i have Attach Screenshot of my error. Please Help me.
Thanks in Advance.