It'd be nice if the different flair options could be hosted on HTTPS as well as HTTP, so that they could be used in — for example — HTTPS-secured intranet sites.

link|improve this question
15  
Oh, god. Flair on an intranet site?! You're taking SO too seriously. – Mehrdad Dec 2 '09 at 11:13
5  
I can see a status-declined in your immediate future... – Marc Gravell Dec 2 '09 at 11:32
1  
Haha, quite possibly. It's more of a challenge to my coworkers. – Jonas Lincoln Dec 2 '09 at 13:48
1  
I have my flair on my internal Sharepoint page. What else do you put there? – C. Ross Dec 2 '09 at 15:45
3  
Congrats on two and a half years -- a quarter decade! -- without being declined! CC @MarcGravell – Popular Demand yesterday
feedback

2 Answers

se-flair supports HTTPS if you use the PNG image version.

link|improve this answer
feedback

You could write a little proxy script a https server that retrieves the flair image (over http)

In php the script would look something like this:

<?php
$image = file_get_contents('http://stackoverflow.com/users/flair/19165.png');
foreach ($http_response_header as $header) {
    header($header);
}
echo $image;
exit();  

Just replace 19165 with your StackOverflow id.

link|improve this answer
feedback

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged