oauth

Open Graph calls generating OAuth Exception

痴心易碎 提交于 2019-12-24 17:41:03
问题 I'm experiencing some problems getting an Open Graph implementation working. As far as I can tell, I have the correct meta tags present. When I paste an URL into the Open Graph Debugger, it returns with the proper information defined (title, description, image, etc), and no errors. I have version 3.1.1 of the Facebook PHP SDK. I have Open Graph enabled for my development app, and I have an action ( read ), and an object ( article ) defined. The implementation in question is a website, not a

Azure hosted api bearer tokens wont decrypt with context.DeserializeTicket?

徘徊边缘 提交于 2019-12-24 17:30:01
问题 I have 2 webapi2 projects that use the same database. If I'm on localhost I get a bearer token from one I can pass it to the other and the other will properly decrypt it and load the user. However when I publish them to separate urls on azure, I get the one token fine from one but when I pass it to the other I can't get the ticket to load and it gives me the unauthorized response. I'm testing this by watching the owin AuthenticationTokenProvider.OnRecieve method. When context

Azure hosted api bearer tokens wont decrypt with context.DeserializeTicket?

我怕爱的太早我们不能终老 提交于 2019-12-24 17:29:09
问题 I have 2 webapi2 projects that use the same database. If I'm on localhost I get a bearer token from one I can pass it to the other and the other will properly decrypt it and load the user. However when I publish them to separate urls on azure, I get the one token fine from one but when I pass it to the other I can't get the ticket to load and it gives me the unauthorized response. I'm testing this by watching the owin AuthenticationTokenProvider.OnRecieve method. When context

Calling Uber API from Rails: {“error”: “invalid_client”}

亡梦爱人 提交于 2019-12-24 17:03:04
问题 Been at this for a day. Using Rails to call the Uber API and failing to get an access token. Grabbing the authorization code works, but exchanging for an access token does not. I've tried with and without the OAuth 2.0 gem and made sure all my keys were accurate. Tried on two separate Uber accounts, too. All combinations give the same error: {"error": "invalid_client"} . I'll post the non-OAuth code below. params[:code] is the auth code returned from Uber. uri = URI.parse('https://login.uber

Redirect back to application from redirect_uri page

南笙酒味 提交于 2019-12-24 16:41:12
问题 I'm working on building a connect with Strava button, however, I'm new to Swift and iOS development and I'm not sure how to redirect back to the application from the web view of redirect_uri. I would appreciate any help. 来源: https://stackoverflow.com/questions/37602380/redirect-back-to-application-from-redirect-uri-page

Not able to get irb console working with tumblr_client gem

北慕城南 提交于 2019-12-24 15:58:07
问题 I have very little experience with APIs which is something that I'm trying to change so I'm trying to get started with the Tumblr api. I've installed the tumblr_client gem (documentation here) and am following the instructions. I've created an application on a new Tumblr account and have the necessary OAuth information (consumer_key, consumer_secret, ect.) Actually getting it to do something is proving difficult, so like a good little programmer I'm trying to get the console going to explore

Implement Google login in Android Client/Server app

非 Y 不嫁゛ 提交于 2019-12-24 15:20:32
问题 The app I am working on consist two parts: Native android app Web service I want to implement a login procedure between the app and the webservice that is based on the user's Google account. Reading Google's developers site I understand how to make the user authorize an API project on his mobile device, what I fail to understand is how to pass it on to the server and how the communication should be dealt with between the native android app and my webservice. How is the fact that the mobile

Azure Active Directory Login: Web App Permissions, User Consent not triggered

不想你离开。 提交于 2019-12-24 15:03:08
问题 I have currently set up a AAD instance and I am authenticating my users against it via my web app, and it’s working great. When I added and configured the application on AAD, I added the required Application and Delegated Permissions to access the Office365 Calendar API. However, the only thing that is missing is that during the login flow users aren’t being prompted to grant consent for the permissions, as it should happen from what I’ve read in your docs: https://msdn.microsoft.com/en-us

Issues running OAuthd instance

旧街凉风 提交于 2019-12-24 14:53:01
问题 I encounter problems when I try to run the OAuth instance in my directory. (Based on https://github.com/oauth-io/oauthd) My Redis server is up and running, all is set. I followed all the instructions, doubled check everything and even tried a fresh re-install of node, redis and oauthd. Yet, every time I run the oauthd start command, I get the same output: { [Error: Cannot find module './build/Release/DTraceProviderBindings'] code: 'MODULE_NOT_FOUND' } { [Error: Cannot find module './build

OAuthWebSecurity Migrating from OpenID 2.0 to OpenID Connect

微笑、不失礼 提交于 2019-12-24 14:39:56
问题 Google had earlier announced the deprecation and discontinuation of openID 2.0 on April 2015. Unfortunately for most people like me, our existing applications already have a bunch of codes written based on this service using OAuthWebSecurity from DotNetOpenAuth nuget package. Is there an update to this change on this nuget package that will assist to migrate to this new update rather than abandoning all my past efforts by searching for alternatives such as OWIN as explained in http://www.asp