Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 409265
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T17:46:23+00:00 2026-05-12T17:46:23+00:00

I have not seen a really good example on the web. How can I

  • 0

I have not seen a really good example on the web. How can I add authentication to a request like this:

(defun login-show-posts ()
  (interactive)
  (let ((url-request-method "GET")
        (url-request-extra-headers '(("Content-Type" . "application/xml"))))
    (url-retrieve "http://localhost:3000/essay/1.xml" 
    (lambda (status)
                    (switch-to-buffer (current-buffer))
                    ))))

if for example, the user and pass is admin:admin?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T17:46:24+00:00Added an answer on May 12, 2026 at 5:46 pm

    I got the impression that url.el was designed mostly for interactive operations, i.e. you do a call without authorisation, the server responds with a 403 “authorization needed” (correct code?) status and url.el will query the user for user name and password.

    You can have a look at my code on http://github.com/hdurer/fluiddb.el where I try to do things programmatically.

    Basically, I create the HTTP authorzation header myself (base64 encoding the correctly formatted string and adding the correct header to url-request-extra-headers).
    Then in a second step I need to add advice to url-http-handle-authentication so that it won’t ask the user should the passed credentials not be acceptable.

    This feels a lot like raping url.el but it works for me and is the only way I could make it work.


    Your code would thus look something like this:

     (defvar xyz-user-name "admin")
     (defvar xyz-password "admin")
    
     (defvar xyz-block-authorisation nil 
       "Flag whether to block url.el's usual interactive authorisation procedure")
    
     (defadvice url-http-handle-authentication (around xyz-fix)
       (unless xyz-block-authorisation
           ad-do-it))
     (ad-activate 'url-http-handle-authentication)
    
    
     (defun login-show-posts ()
       (interactive)
       (let ((xyz-block-authorisation t)
             (url-request-method "GET")
             (url-request-extra-headers 
              `(("Content-Type" . "application/xml")
                ("Authorization" . ,(concat "Basic "
                                            (base64-encode-string
                                             (concat xyz-user-name ":" xyz-password)))))))
         (url-retrieve "http://localhost:3000/essay/1.xml" 
                       (lambda (status)
                         (switch-to-buffer (current-buffer))
                         ))))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 231k
  • Answers 231k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Unfortunately, I am not sure too much can be done… May 13, 2026 at 2:09 am
  • Editorial Team
    Editorial Team added an answer please have a look on the below link. The linke… May 13, 2026 at 2:09 am
  • Editorial Team
    Editorial Team added an answer Here's what I did Moved to the Ramdisk: JDK (deleted… May 13, 2026 at 2:09 am

Related Questions

During my apprenticeship, I have used NHibernate for some smaller projects which I mostly
I finally figured out a good/easy way to make clean URLs with regex on
I have to write a multiplayer pacman game in Java for a university assignment
This is not really a programming question, more of an algorithmic one. The problem:

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.