similar to: OAuth2 client credentials grant error UnsupportedAuthorizationScheme

Displaying 20 results from an estimated 700 matches similar to: "OAuth2 client credentials grant error UnsupportedAuthorizationScheme"

2011 Mar 19
0
Problems with SSL dependent gems OAuth2 & ActiveMerchant
Hello all, My application uses the OAuth2 gem (0.1.1) to connect to Facebook, and the ActiveMerchant gem (1.12.0) to connect to PayPal. Under what is the current Rails/Ruby distribution, both of these gems throw the following OpenSSL::SSL::SSLError when used: * SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed I did some digging, and found two
2018 May 29
1
OAUTH2 + proxying [host=??]
All, We currently use a proxy configuration with an sql query to authenticate and discover which backend server an address belongs to and proxy the connection to that host to authenticate and retrieve mail. We are looking to move to OAUTH2 for authentication and am just trying to figure how how to get that extra host information as part of the passdb query when using this mechanism. Looking at
2014 Sep 23
2
[LLVMdev] Use of llvm.prefetch intrinsic for basicblock prefetching
Hi, Thanks, I am targetting x86 architecture. -Usha On Mon, Sep 22, 2014 at 10:39 PM, Hal Finkel <hfinkel at anl.gov> wrote: > ----- Original Message ----- > > From: "usha shau" <ushashau1 at gmail.com> > > To: llvmdev at cs.uiuc.edu > > Sent: Monday, September 22, 2014 7:01:20 AM > > Subject: [LLVMdev] Use of llvm.prefetch intrinsic for
2010 Dec 20
0
Server won't start on using authlogic-oauth2
I have included oauth2 and authlogic-oauth2 in the gemfile as I want to use them and am trying to start the server. It doesn''t start and gives me the error /Library/Ruby/Gems/1.8/gems/railties-3.0.3/lib/rails.rb:44:in `configuration'': undefined method `config'' for nil:NilClass (NoMethodError) from
2010 Sep 17
0
ruby's oauth2 grant_type
Hi, i started using oauth2 gem by intridea (http://github.com/intridea/oauth2) and don''t know how to fix this problem. I have developed both client and server and on request for access_token i see no grant_type parameter. My code from client callback controller class CallbackController < Devise::OauthCallbacksController def accounts access_token =
2020 Feb 14
0
Dovecot Proxy - Oauth2 mech add custom fields
Hi, I have a problem with configuring dovecot passdb for Oauth2 with keyclock. A user can access more mailbox, mailboxes are associated with the user. When a user login with this method: OK [CAPABILITY IMAP4rev1 SASL-IR LOGIN-REFERRALS ID ENABLE IDLE LITERAL+ AUTH=PLAIN] Dovecot ready. a login mailbox*user password Dovecot when requiring the grant_url send to Keyclock, for example, this post
2019 Dec 10
0
OAuth2 mail client
Hi all, I'm wondering if there are any IMAP client software alternative to Thunderbird who can handle OAuth2 other than using gmail, yahoo etc (ex, talk to local auth provider)? Thunderbird does not seem to support well at the time being so I'm wondering what other choices we may have for our user communities. Thank you very much. Mizuki -------------- next part -------------- An HTML
2023 Mar 01
0
OAuth2: local validation with RFC9068 tokens
Hello, my IdP is kind of progressive and implemented RFC9068, where all access tokens now come with typ "at+JWT". Since the setup has used local validation, I had to switch and currently use introspection endpoint. Looked around at the src and there seems to be relatively simple check of the token typ checking the only fixed value of "JWT" -- do you think you could consider
2021 Jun 21
0
CVE-2021-29157: oauth2 JWT local validation path traversal
Open-Xchange Security Advisory 2021-06-21 Product: Dovecot Vendor: OX Software GmbH Internal reference: DOV-4476 (Bug ID) Vulnerability type: CWE-24: Path Traversal: '../filedir' Vulnerable version: 2.3.11-2.3.14 Vulnerable component: imap, pop3, submission, managesieve Report confidence: Confirmed Solution status: Fixed by Vendor Fixed version: 2.3.14.1 Vendor notification: 2021-03-22
2021 Jun 21
0
CVE-2021-29157: oauth2 JWT local validation path traversal
Open-Xchange Security Advisory 2021-06-21 Product: Dovecot Vendor: OX Software GmbH Internal reference: DOV-4476 (Bug ID) Vulnerability type: CWE-24: Path Traversal: '../filedir' Vulnerable version: 2.3.11-2.3.14 Vulnerable component: imap, pop3, submission, managesieve Report confidence: Confirmed Solution status: Fixed by Vendor Fixed version: 2.3.14.1 Vendor notification: 2021-03-22
2010 May 06
7
Facebook, authlogic, and OAuth2
Has anyone gotten started with getting the OAuth2 replacement for Facebook Connect working with auth_logic? I know there is an OAuth2 gem (http://intridea.com/2010/4/22/oauth2- gem-just-in-time-for-facebook-graph?blog=company), and I''m thinking of using that to integrate. Anyone know when the Fb Connect API will be shut down? -- You received this message because you are subscribed to
2002 Nov 01
1
Help Please!
I keep getting these errors [2002/11/01 11:24:02, 0] lib/util_sock.c:read_socket_data(507) read_socket_data: recv failure for 4. Error = Connection reset by peer I have also seen write_socket_data errors. We have checked the switches and see no errors on them. These are various clients, some win2k,98,Nt4 etc. I have tried different versions of samba and made my smb.conf as basic as possible.
2014 Jun 10
0
Re: TCP connection works for only remote host
Restarted libvirt to listen at tcp $ sudo /etc/init.d/libvirt-bin stop [sudo] password for fluent: Rather than invoking init scripts through /etc/init.d, use the service(8) utility, e.g. service libvirt-bin stop Since the script you are attempting to invoke has been converted to an Upstart job, you may also use the stop(8) utility, e.g. stop libvirt-bin libvirt-bin stop/waiting $ sudo libvirtd -d
2019 Apr 19
1
OAuth Passdb Grant
I'm trying to implement the password grant flow, as specified at https://wiki2.dovecot.org/PasswordDatabase/oauth2, but am getting an error message. Can you please help? auth: Fatal: oauth2 /etc/dovecot/dovecot-oauth2.token.conf.ext: Error in configuration file /etc/dovecot/dovecot-oauth2.token.conf.ext line 1: Unknown setting: grant_url $ dovecot -n # 2.3.5.2 (38c8f1daf):
2014 Sep 22
2
[LLVMdev] Use of llvm.prefetch intrinsic for basicblock prefetching
Hi, I am new to LLVM and using it for my project where I want to perform software prefetching of code blocks. I am not able to use the llvm.prefetch instruction to fetch a block of code in instruction cache. The LangRef <http://llvm.org/docs/LangRef.html#llvm-prefetch-intrinsic>manual mentions that giving last argument as '0' performs prefetch on instruction cache. However, I get
2017 Jun 08
2
regular expression help
Dear All, My query is: Do we always need to use perl = TRUE option when doing ignore.case=TRUE? A small example : my_text = "RECOVERY OFFICER-II\nDEBTS RECOVERY TRIBUNAL-III\n RC No. 162/2015\nSBI VS RAMESH GUPTA.\n Dated: 01.03.2016 Item no.01\n Present: Ms. Sonakshi, the proxy counsel for Ms. Usha Singh, the counsel for ARCIL.\n None for the CDs.\n
2017 Jun 08
0
regular expression help
Zitat von Ashim Kapoor <ashimkapoor at gmail.com>: > Dear All, > > My query is: > > Do we always need to use perl = TRUE option when doing ignore.case=TRUE? > > A small example : > > my_text = > "RECOVERY OFFICER-II\nDEBTS RECOVERY TRIBUNAL-III\n RC No. 162/2015\nSBI > VS RAMESH GUPTA.\n Dated: 01.03.2016 Item no.01\n > Present:
2013 Jan 17
0
AUTO: Zubair A Mohammed is out of the office.
I am out of the office until 01/28/2013. Hi, Thanks for your email. I am on leave on 14th Jan''13, will have no access to email. For Patching Related Queries, Please reach out to "raveepan at in.ibm.com" For BAU Related Queries, Please reach out to "pradeepssingh at in.ibm.com/usha.rani at in.ibm.com" For ASDP Related Queries, Please reach out to "subrahmaniam
2006 Feb 16
0
FW: Help required on Samba software
> -----Original Message----- > From: Khawade, Kirtikumar (GE Infra, Transportation) > Sent: Wednesday, February 15, 2006 7:49 PM > To: 'srinivas.prasad@yukthi.com'; 'sales@deeproot.co.in'; 'info@thelinuxconsultancy.co.uk'; 'info@stelias.com' > Cc: Pai, Usha S (GE Infra, Transportation); Khadmale, Subodh (GE Infra, Transportation); Nk, Radha (GE
2014 Jun 10
2
TCP connection works for only remote host
tcp connection working only for remote host . for localhost raising the following error >>> con=libvirt.open("qemu+tcp:///system") libvirt: XML-RPC error : unable to connect to server at 'localhost:16509': Connection refused Traceback (most recent call last): File "<stdin>", line 1, in <module> File