Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

First of all, the goals are not security nor user-friendliness. (Meaning no visual crap and no password encoding/ mega security stuff)

Server-side I want the simplest thing possible. Just a way to authenticate some ~5 users but knowing who they are when they do. Once they are authenticated I'll serve them a file (I haven't decided yet what, .txt or xml or something) and they won't be able to do anything else.

So from the program standpoint, I need to connect to my server, authenticate somehow, get a file, and disconnect. The user only interacts with the program with a simple user/pass combo. The rest is automatic. I was looking to libcurl for the connection+authentication+download, but I would like to hear suggestions because from this list: libcurl competitors, there seems to be much offer available.

I think of it as the same as when I do sudo aptitude install, but the sudo part would go on the server if that makes any sense.

So my question is, how can I make a page with an authentication (note that it doesn't have to have any visual output) which then lets the program download a file. And how do I connect to it?

share|improve this question

3 Answers

up vote 2 down vote accepted

Simplest thing possible would be to keep the path to the files secret and authenticating people by giving them the link.

share|improve this answer

You might find this page on HTTP Basic authentication useful. You can either roll your own HTTP server or configure an existing httpd. Then, you can write a simple shell script that calls out to curl to authenticate and download the page.

share|improve this answer
Assuming I had a popular thing like Apache, how would I go about that? I guess all I can do in a shell script I can do in my C program right? – VascoP Feb 1 '11 at 19:20

If your users can have accounts on the server, a way would be to use the scp command. They will be prompted for their password. You can wrap it in a shell script or call it from a C program using system or equivalent.

Edit: Then you may look into protecting a directory by a .htaccess and a .htpsswd. I don't know it is accessible through libcurl or any other C library though.

share|improve this answer
The goal was they would be "registered" but not with actual accounts on the server. – VascoP Feb 1 '11 at 19:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.