Tag Info

New answers tagged

0

After a lot of fiddling around I found this workaround which solved the problem. I made some changes to the run configuration of the tomcat server. Added the libraries to that as I couldn't find a proper run configuration for my Servlet web application from the ones given.Anyways,it worked!


0

PHP has a PECL client: http://www.php.net/manual/en/book.oauth.php Nice intro on oauth2: http://www.slideshare.net/aaronpk/an-introduction-to-oauth-2 This site oauth2.net/2/ list out 3 oauth server in different stages of development. Big providers (Facebook, Google, Yahoo, Twitter, etc) implements their own flavour of Oauth, and moreover Oauth 2.0 is ...


0

The syntax has changed. Here is what I should have done: var cb = new Codebird(); cb.setConsumerKey('<fill-in>','<fill-in>'); cb.setToken('<fill-in>','<fill-in>'); cb.__call( 'search_tweets', 'q=reddit', function (reply) { alert('x'); } );


0

Use the SessionAuthenticationModule to create your SessionSecurityToken: var sam = FederatedAuthentication.SessionAuthenticationModule; var token = sam.CreateSessionSecurityToken( claimsPrincipal, "application-context", DateTime.UtcNow, DateTime.UtcNow.AddHours(1), true); sam.WriteSessionTokenToCookie(token);


1

The OAuth2 spec doesn't actually require the use of JWTs, since it treats tokens as opaque, but they are a convenient standard for implementers to use. If you look at the OpenID Connect Specificiation, which builds on top of OAuth2 to provide an authentication system, then you'll find that it does make explicit use of JWTs, for example in the definition of ...


0

You can include a link/URL in your status update in the same way that you have included the other words (Hello Nettuts+). However, you cannot add pictures in this manner - you will need to use the statuses/update_with_media endpoint as opposed to the statuses/update endpoint that you are using in your existing code. You can learn more about how to do this ...


0

Try like this, curl -F 'access_token=ACCESS-TOKEN' \ -F 'text=This+is+my+comment' \ https://api.instagram.com/v1/media/{media-id}/comments Please Refer http://instagram.com/developer/endpoints/comments/


0

Will it be resolved if you can set a proxy server in your Server?


1

//here final_sign is signature generated from following procedure. $nonce = substr(md5(uniqid('nonce_', true)),0,16); $temprealm="http://magentohost/api/rest/products"; $realm=urlencode($temprealm); $oauth_version="1.0"; $oauth_signature_method="HMAC-SHA1"; $oauth_consumer_key="dfddfgdgdfgddf6qgygmyvw7e3"; ...


0

I think google oAuth tutorial will make you help https://developers.google.com/accounts/docs/OAuth2


0

You could start with what VS2012 suggests for their MCV framework: webpages_OAuthMembership: ------------------------- Provider nvarchar(30) (clustered primary key) ProviderUserId nvarchar(100) (clustered primary key) UserId int webpages_Membership: -------------------- UserId int (Primary Key) CreateDate datetime ConfirmationToken nvarchar(128) ...


2

The provisioning API is still on the older GDataService API. It is being replaced by the new API called directory api (check out here https://developers.google.com/admin-sdk/) If you just want to at least get start and familiar with the OAuth flow. You should check out this documentation for the Python API client library: ...


0

oauth doesn't have 'code' parameter because on previous step we get error from facebook because we used expired APP_ID (that was defined in fbconsole). correct usage of fbconsole.automatically_authenticate: import fbconsole.py fbconsole.APP_ID = 'our APP_ID' fbconsole.automatically_authenticate('LOGIN','PASS','our APP_SECRET','request_uri')


1

I just figured out how to get the refresh token, I'll tell you what I did just in case someone ever runs into the same problem... String authorizationUrl = new GoogleAuthorizationRequestUrl( OAuth2ClientCredentials.CLIENT_ID, OAuth2ClientCredentials.REDIRECT_URI, OAuth2ClientCredentials.SCOPE).build(); ...


1

As @grotori pointed out, you should be looking at the documentation instead of the object to define how to access the object attributes. Note that an instance variable from an object is usually printed along with the object, but this doesn't mean that it is in the class expected interface. For example: class A def initialize @foo = 'bar' end end ...


2

Based on this you should be able to access them by: @my_object.token @my_object.expires_at


2

Edit it should actually be @my_object.token and @my_object.expires_at I found out by re-indenting your object dump like this: #<OAuth2::AccessToken:0x007fd03df75db8 @client=#<OAuth2::Client:0x007fd035040ad0 @id="123xyz", @secret="xyz123", @site="https://graph.facebook.com", @options={ ...


0

TDOAuth in my opinion was the best solution. it is clean and simple, only one .h and .m file to work with, and no complicated example projects.. This is the OAuth 1.0 flow: step 1 - get request token //withings additional params NSMutableDictionary *dict = [NSMutableDictionary dictionary]; [dict setObject:CALL_BACK_URL forKey:@"oauth_callback"]; ...


1

If you are looking at OAuth 2 then the flow you are describing is the Client Credentials Grant This kind of "two legged" / "service account" type flow is one that doesn't have a web page based flow. DotNetOpenAuth supports the Client Credentials Grant. You can see an example of it in action here; however, be aware even though the author states it is the ...


0

If the error message says "Authorization is required to perform that action.", all you have to do is authorize your script. Just attempt to run any function manually from the script editor and you'll be asked to authorize. However, if the script is published as a web app and set to run as the user running the script, then each user accessing the script ...


-1

In resource access implementations you describe this would be considered a vulnerability. Almost every web app has control to ensure that requested resources are only delivered to an authenticated and authorized user. The only time when this would not be the case would be with a simple server that does no session tracking. I can't imagine Facebook or any ...


0

well I digg the internet till its end and I come up with this: private String usernameReader() { String jsonOutput = ""; try { jsonOutput = makeSecuredReq(Constants.API_REQUEST, getConsumer(this.prefs)); JSONObject jsonResponse = new JSONObject(jsonOutput); JSONObject m = (JSONObject) ...


1

You might be better off with a user table, a user_oauth table and a one-to_many relation between them. user_oauth would be like: user_id oath_name oauth_id Where oauth_name would be: google, facebook etc.


1

There's a live example of how to implement Facebook Login via the Temboo SDK here. The source code for that example is available on GitHub (in PHP) but you can easily generate the Ruby code you need to achieve the same behavior via the Temboo website, see link below: https://www.temboo.com/library/Library/Facebook/OAuth/ (Full disclosure: I work at ...


1

I've found that the typical solution to the problem I asked in this question is to use XAuth. Many providers such as Twitter and the application I am currently working against support XAuth to provide a simplified flow without the user interface based authentication. What is the difference among BasicAuth,OAuth and XAuth?


0

excuse me RivieraKid, could you post full code? i've implemented oauth without scribe and i'm very interested to do with that ... thanks :)


0

Don't use client-side oauth, make it through the "server side" of node-webkit. That means, you can popup a window, redirect it, close it when you are done. All the necessary information you need to pass using the request library, or API SDK for the Facebook oauth. Part of this process I've posted in here window.open without popup blocker using AJAX and ...


0

Ok, after two days of searching and poking through the source code of all the node_modules involved (express, connect, connect-redis), I tracked down my problem to a simple stupid typo. authToken = rtg.auth.split(":")[1]; The authToken here just provides the password (which is all that redis uses to connect). But to manually choose a database, you need ...


0

In my experience using Oauth 2.0 in VBA this error happens when you use the code more than once for requesting a token. The usage sequence I use based on the documentation and experience is: access GET https://accounts.google.com/o/oauth2/auth once for geting the code access POST https://accounts.google.com/o/oauth2/token once for geting the token after that ...


0

Go with HTTPS. It's (marginally) slower, but the security you get from it for the relatively short investment time (purchasing the SSL cert and just changing your URLs from http to https) is worth it. Without HTTPS, you run the risk of your users' sessions getting hijacked on unsecured public networks, which is extremely easy for someone to do.


0

I think your last case is the right way to go - Allow two to be generated When the user visits his screen full of authorized application, it's not necessary to show him one and the same Application twice - you just have to delete the tokens associated with the app if the user revokes application access. That is, all his authorizations to the app with all ...


0

I was only able to achieve this with Twitter and Facebook logins when Azure Mobile Services and MVC SimpleMembership were in play. Please see this thread which admittedly has a lot to look through, but it does explain my findings in pretty good detail. http://social.msdn.microsoft.com/Forums/en-US/azuremobile/thread/d54d28c6-6941-4af5-b116-dc8c51820498 ...


0

Here are my answers in order, OAuth 2.0 is the best fit for you. I would say you should go for OAuth. Definitely yes. There are libraries. Apache Oltu and Google client library. OpenID Connect specification which is built on top of OAuth can be used to implement SSO.


0

The https it is slower, but not a not. Only the handshaking is slower. For us the biggest problem it is to upkeep the key pair on server-mobiles side and the rights. We have implemented a message digest too. The problem it is: is hard to set up the php-android-ios version properly. After this is done ( a parameter need to changes what is suggesting Google at ...


0

I advice you to give a look to this library PHPoAuthLib (if you didn't yet) It supports OAuth 1 and 2. You can install it with Composer / Packagist. There are a lot different implementation examples like twitter, facebook, linkedin etc... You see these examples here.


0

Have you see this? I thought it was quite useful. It is, however, a lot of code to achieve a simple result: http://www.sw-engineering-candies.com/blog-1/howtogetuserinformationwithoauth2inagwtandgoogleappenginejavaapplication


0

Using the same tutorial for the Dropbox API at http://taught-process.blogspot.com/2012/05/asdlasd-asda-sd-asd-asdasd.html Ended up with the following script that worked for me # Include the Dropbox SDK libraries from dropbox import client, rest, session # Get your app key and secret from the Dropbox developer website APP_KEY = '3w7xv4d9lrkc7c3' ...


0

Try setting your Content-Type header to 'application/atom+xml' in your PUT request. I was having a similar problem and doing that helped.


0

As Igy said: http://www.example.com/?fb_source=search&code=CODE_HERE Once you strip the code parameter it will become: http://www.example.com/?fb_source=search However if you are redirecting with this url it will need to be url encoded otherwise the ? will stop the redirect parameter and add the fb_source to your request. It should look like this ...


1

Tornado isn't aware of any pop-ups you're dealing with. Its just responding to http requests by sending either some kind of content such as html or redirects your browser to a new url. The pop-up behaviour you described should rather be implemented on the client side using javascript. Check out related answers for that: Twitter OAuth via a popup Twitter ...


1

If the access token is compromised, the app that now has it CAN misuse it. Since access tokens are short lived, and are mapped to certain permissions only - the damage would be limited to say 10 minutes access to a single resource! (tokens are generated for apps that are registered for a scope, the scopes are mapped to permissions.) If you are working on a ...


0

I know that changing the whole structure of your code is a bit of a daunting task, but I highly recommend using PhoneGap Facebook Plugin. And since you're using build, you can also easily integreate the Facebook Connect plugin from Build. I highly recommend you check out the following two files found within the phonegap-facebook-plugin / example / HackBook ...


0

I had the same problem, what I did ( I suppose It's not the best solution) was, to place the methods of the REST server, inside an "@Security.Authenticated(Secure.class)" , and, use a session cookie (which also was registered inside a Hash table in backend). The session cookie was generated after user sign-in I post code: package controllers; import ...; ...


0

After many attempts, I found a solution. So, I thought I'd share the commands here if it can be useful for someone else: This extract the private key from the PKCS#12 file: openssl pkcs12 -in myKeystore.p12 -nocerts -out privateKeyPkcs8.pem But the outcome is PKCS#8 encoded which isn't what NodeJS crypto package expects. So, I had to run the following ...


1

Just redo the $settings with the config items $this->config->load('twitter_settings'); $this->load->library('/twitter/TwitterAPIExchange'); $settings = array( 'oauth_access_token' => $this->config->('oauth_access_token'), 'oauth_access_token_secret' => $this->config->('oauth_access_token_secret'), 'consumer_key' ...


0

If you are using Login with Google+, have a look at this: https://developers.google.com/+/api/latest/people


0

Mobile apps work perfectly fine with OAuth. SSO can be enabled using OAuth. Some info on how to set up a OAuth server/provider - How would an efficient OAuth2.0 server / provider work? As you say, you need to ask the user for authorize an app (accept/deny permissions that the app asks for) - perfect use case for OAuth 2.0. Feel free to follow up if you ...


0

OAuth authentication on website now built-in, question closed


0

For contact list via oauth use this url-- https://www.google.com/m8/feeds/contacts/default/full?max-results=1000&alt=json&access_token=ACCESS_TOKEN


1

I don't know how you actually want the app to behave, but one thing is certain - you do have to input the user credentials once. Once you authenticate and authorize (there are a lot of open questions on SO, about automatic authentication), your app will get not only an access token, but also a Refresh Token. A refresh token is just what you need in your use ...



Top 50 recent answers are included