Openstreetmap headers and contact infos [closed] - api

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'm trying setting up headers for Openstreetmap. I use AJAX to send requests.
Which HTTP header field is used for contacts? I thought it was "From" but the request doesn't allow that field.
Any suggestions?

So from your clarification about it sounds like you are probably talking about one of our usage policies:
http://wiki.openstreetmap.org/wiki/API_usage_policy
http://wiki.openstreetmap.org/wiki/Tile_usage_policy
http://wiki.openstreetmap.org/wiki/Nominatim_usage_policy
The only one which explicitly talks about contact information seems to be the Nominatim one for the geocoder, though all require a valid User-Agent header to help us identify any problem users.
The best way to send the contact information requested by the Nominatim policy is probably as part of the User-Agent though using a URL parameter will work fine as well - anything that lets the administrators work out who you are from the logs if there is a problem basically.

Related

web Service With Objective-c [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
In My App I Wanna retrieve All Stores Near To The Curent Location in Egypt .
i used Google Places API But It Doesn't Give Me What I Need And It Has Only 20 Store .
any One Can Help Me With Web Service free Or Data Bas I Can Access .
Thanks In Advance
If that data does not exist in any form other than Google Places API you may be out of luck. I would recommend this site to search for APIs. http://www.programmableweb.com/apis
If programmableweb.com doesn't help I would recommend seeking out a company that perhaps creates business directories for Egypt. Assuming they are willing to work with you, you may end up needing to build the API all on your own.

How to write script for posting your geo location to a website? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
You see it everywhere these days...
Facebook will display your geo location along with your status update. "John Doe says this...near Austin, Tx"
In Google maps you can click the "round dot" and it will show you where you are geographically and allow you to create your direction around that.
What's the coding behind it? I'd like to start implementing this into a few things (more so how facebook does it). Does anyone have an idea? I'm guessing a combo between php, javascript, Database (ajax) and perhaps a "GEO api" of some sorts... Along with w/ some good ol' fashion html/css.
Am I on the right thinking path here?
It's the Geolocation API . Have a look here: http://html5doctor.com/finding-your-position-with-geolocation/

Gathering NDR Email addresses [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am looking to gather all NDRs from out an outlook account and write the email addresses of the fails to either a table within a database or even just an excel document for the purposes of data cleaning.
Has anyone done anything like this previously and would be willing to push me in the right direction?
Well, you didn't say if you wanted an open source app (not aware of any), but I have written this commercial product:
http://www.ListNanny.NET
ListNanny will extracted the bounced addresses, classify the NDR, and provide you with some helpful information on why it bounced.
The only catch is that the email needs to be in it's RFC2822 format (like you donwload over IMAP or POP3). It can't read native Outlook .msg files.
Does that help?

Adding Notes Using Google Reader's API [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Does anyone know how to add a note using Google Reader's API? In looking at some of their code, I've noticed that it might have something to do with the "/reader/api/0/item/edit" URL, but I can't find this documented anywhere.
The answer above is missing the full set of query parameters.
They are documented here: http://www.google.com/support/reader/bin/answer.py?hl=en&answer=147149
Do a POST to http://www.google.com/reader/api/0/item/edit
You'll need to add your SID cookie, and also get a token from the API for it to work.
Params are:
T = token string
share = make the note public, "true" or "false" values
snippet = the body of the note
There's also a "linkify" parameter, although I haven't been able to figure out yet what that one actually does.
Here is what works for me:
POST http://www.google.com/reader/api/0/item/edit
ck=<time>
client=<client>
share=true
annotation=<text>
T=<token>
srcItemId=<itemid>

Can anybody explain the structure of the Apache server? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
How does the Apache web server work? Can someone explain it in detail?
Start with the Apache architecture overview to understand the basic components and data flows for Apache. Then, you probably want to go into the developer documentation, as the list module configuration options in the docs is not too helpful in understanding how does everything work.
Finally, comparing Apache to other popular open-source servers such as Lighttpd would show you what tasks are approached in a similar way by different programs, and where there are trade-offs (speed vs. features, for example) that differentiate between the servers.
It's magic. Don't even bother trying understand it.