WebFinger library for PHP?

290 views Asked by At

My goal is to retrieve the OpenID identity provider for a given e-mail address, and so I'm looking for a WebFinger library written in PHP. Unfortunately I fail to find a suitable one.

The lib should be PEAR-installable and be usable standalone, or at least with only a few dependencies.

Any recommendations?


What I've found so far:

1

There are 1 answers

0
cweiske On BEST ANSWER

I've began implementing it myself since there doesn't seem to be a good existing libary

The XML_XRD PEAR package is an implementation of XRD, which gets me 80% to WebFinger support. See the code.

I also wrote the Net_WebFinger package.