1

Is there any way to pull data from something like a global address list in outlook through javascript(not locally)? An example would be to be able to search for a contact and then taking their data from the server to be stored to local variables.

4

1 回答 1

0

Not locally indeed. The web browser itself has no access to this information without some sort of plugin.

What you want is an ajax call to a web server in your domain that delivers this list in json. It's up to the platform you are using to list the people in your address list.

It's possible to use the global address list (read this) but you probably just want to search your LDAP database.

But all of this is usually done in either ASP/C# or PHP. You can find plenty of examples to do so.

于 2014-07-10T11:43:41.277 回答