{"id":15663293,"url":"https://github.com/pfefferle/wordpress-webfinger","last_synced_at":"2025-10-30T20:41:58.381Z","repository":{"id":870159,"uuid":"609880","full_name":"pfefferle/wordpress-webfinger","owner":"pfefferle","description":"A WebFinger plugin for WordPress","archived":false,"fork":false,"pushed_at":"2025-08-03T20:14:20.000Z","size":324,"stargazers_count":19,"open_issues_count":1,"forks_count":6,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-10-26T05:20:57.965Z","etag":null,"topics":["activitypub","fediverse","hacktoberfest","jrd","ostatus","plugin","webfinger","wordpress","wordpress-plugin"],"latest_commit_sha":null,"homepage":"https://wordpress.org/plugins/webfinger/","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pfefferle.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"custom":"https://notiz.blog/donate/"}},"created_at":"2010-04-14T10:37:23.000Z","updated_at":"2025-04-15T00:07:25.000Z","dependencies_parsed_at":"2023-09-21T20:01:51.861Z","dependency_job_id":"e59ab11b-b16d-48fb-93fc-65c17d63680b","html_url":"https://github.com/pfefferle/wordpress-webfinger","commit_stats":{"total_commits":188,"total_committers":8,"mean_commits":23.5,"dds":"0.28191489361702127","last_synced_commit":"81da91f632722bab1fff337c7fa009998d28f836"},"previous_names":[],"tags_count":23,"template":false,"template_full_name":null,"purl":"pkg:github/pfefferle/wordpress-webfinger","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pfefferle%2Fwordpress-webfinger","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pfefferle%2Fwordpress-webfinger/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pfefferle%2Fwordpress-webfinger/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pfefferle%2Fwordpress-webfinger/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pfefferle","download_url":"https://codeload.github.com/pfefferle/wordpress-webfinger/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pfefferle%2Fwordpress-webfinger/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":281880769,"owners_count":26577697,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-30T02:00:06.501Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["activitypub","fediverse","hacktoberfest","jrd","ostatus","plugin","webfinger","wordpress","wordpress-plugin"],"created_at":"2024-10-03T13:36:25.409Z","updated_at":"2025-10-30T20:41:58.363Z","avatar_url":"https://github.com/pfefferle.png","language":"PHP","funding_links":["https://notiz.blog/donate/"],"categories":[],"sub_categories":[],"readme":"# WebFinger #\n**Contributors:** [pfefferle](https://profiles.wordpress.org/pfefferle/), [willnorris](https://profiles.wordpress.org/willnorris/)  \n**Donate link:** https://notiz.blog/donate/  \n**Tags:** discovery, webfinger, JRD, ostatus, activitypub  \n**Requires at least:** 4.2  \n**Tested up to:** 6.6  \n**Stable tag:** 3.2.7  \n**License:** MIT  \n**License URI:** https://opensource.org/licenses/MIT  \n\nWebFinger for WordPress\n\n## Description ##\n\nEnables WebFinger ([RFC 7033](http://tools.ietf.org/html/rfc7033)) support for WordPress.\n\nAbout WebFinger:\n\n\u003e WebFinger is used to discover information about people or other entities on the Internet that are identified by a URI using standard Hypertext Transfer Protocol (HTTP) methods over a secure transport.  A WebFinger resource returns a JavaScript Object Notation (JSON) object describing the entity that is queried. The JSON object is referred to as the JSON Resource Descriptor (JRD).\n\n(quote from the [RFC](http://tools.ietf.org/html/rfc7033))\n\n## Frequently Asked Questions ##\n\n### How to extend the JRD file ###\n\nYou can add your own links or properties like that:\n\n    function oexchange_target_link( $array ) {\n      $array[\"links\"][] = array( 'rel' =\u003e 'http://oexchange.org/spec/0.8/rel/resident-target',\n        'href' =\u003e 'http://example.com',\n        'type' =\u003e 'application/xrd+xml' );\n      return $array;\n    }\n    add_filter( 'webfinger_data', 'oexchange_target_link' );\n\n### Add alternate file/output formats ###\n\nYou can add your own links or properties like that:\n\n    function render_xrd($webfinger) {\n      // set custom header();\n\n      // JRD to XRD code\n\n      exit;\n    }\n    add_action( 'webfinger_render', 'render_xrd', 5 );\n\nYou can find a detailed example here \u003chttps://github.com/pfefferle/wordpress-webfinger-legacy\u003e\n\n### The spec ###\n\nWebFinger is specified as [RFC 7033](http://tools.ietf.org/html/rfc7033)\n\n### The WebFinger community page ###\n\nPlease visit \u003chttp://webfinger.net\u003e\n\n## Upgrade Notice ##\n\n### 3.0.0 ###\n\nThis versions drops classic WebFinger support to keep the plugin short and simple. All legacy stuff is bundled in this new plugin \u003chttps://github.com/pfefferle/wordpress-webfinger-legacy\u003e\n\n## Changelog ##\n\nProject maintained on github at [pfefferle/wordpress-webfinger](https://github.com/pfefferle/wordpress-webfinger).\n\n### 3.2.7 ###\n\n* Added: better output escaping\n* Fixed: stricter queries\n\n### 3.2.6 ###\n\n* remove E-Mail address\n\n### 3.2.5 ###\n\n* fix typo\n\n### 3.2.4 ###\n\n* update requirements\n\n### 3.2.3 ###\n\n* fixed `acct` scheme for discovery\n\n### 3.2.2 ###\n\n* fixed typo (thanks @ivucica)\n* use `acct` as default scheme\n\n### 3.2.1 ###\n\n* make `acct` protocol optional\n\n### 3.2.0 ###\n\n* global refactoring\n\n### 3.1.6 ###\n\n* added `user_nicename` as resource\n* fixed WordPress coding standard issues\n\n### 3.1.5 ###\n\n* fixed PHP warning\n\n### 3.1.4 ###\n\n* updated requirements\n\n### 3.1.3 ###\n\n* add support for the 'aim', 'ymsgr' and 'acct' protocol\n\n### 3.1.2 ###\n\n* fixed the legacy code\n* added feeds\n\n### 3.1.1 ###\n\n* fixed 'get_user_by_various' function\n\n### 3.1.0 ###\n\n* Added WebFinger legacy plugin, because the legacy version is still very popular and used by for example OStatus (Mastodon, Status.NET and GNU Social)\n* Added Webfinger for posts support\n\n### 3.0.3 ###\n\n* composer support\n* compatibility updates\n\n### 3.0.2 ###\n\n* `get_avatar_url` instead of custom code\n* some small code improvements\n* nicer PHP-docs\n\n### 3.0.1 ###\n\n* updated version informations\n* support the WordPress Coding Standard\n\n### 3.0.0 ###\n\n* added correct error-responses\n* remove legacy support for XRD and host-meta (props to Will Norris)\n\n### 2.0.1 ###\n\n* small bugfix\n\n### 2.0.0 ###\n\n* complete refactoring\n* removed simple-web-discovery\n* more filters and actions\n* works without /.well-known/ plugin\n\n### 1.4.0 ###\n\n* small fixes\n* added \"webfinger\" as well-known uri\n\n### 1.3.1 ###\n\n* added \"rel\"-filter (work in progress)\n* added more aliases\n\n### 1.3 ###\n\n* added host-meta resource feature (see latest spec)\n\n### 1.2 ###\n\n* added 404 http error if user doesn't exist\n* added jrd discovery for host-meta\n\n### 1.1 ###\n\n* fixed an odd problem with lower WordPress versions\n* added support for the http://wordpress.org/extend/plugins/extended-profile/ (thanks to Singpolyma)\n\n### 1.0.1 ###\n\n* api improvements\n\n### 1.0 ###\n\n* basic simple-seb-discovery\n* json support\n* some small improvements\n\n### 0.9.1 ###\n\n* some changes to support http://unhosted.org\n\n### 0.9 ###\n\n* OStatus improvements\n* Better uri handling\n* Identifier overview (more to come)\n* Added filters\n* Added functions to get a users webfingers\n\n### 0.7 ###\n\n* Added do_action param (for future OStatus plugin)\n* Author-Url as Webfinger-Identifier\n\n### 0.5 ###\n\n* Initial release\n\n## Installation ##\n\nFollow the normal instructions for [installing WordPress plugins](https://codex.wordpress.org/Managing_Plugins#Installing_Plugins).\n\n### Automatic Plugin Installation ###\n\nTo add a WordPress Plugin using the [built-in plugin installer](https://codex.wordpress.org/Administration_Screens#Add_New_Plugins):\n\n1. Go to [Plugins](https://codex.wordpress.org/Administration_Screens#Plugins) \u003e [Add New](https://codex.wordpress.org/Plugins_Add_New_Screen).\n1. Type \"`webfinger`\" into the **Search Plugins** box.\n1. Find the WordPress Plugin you wish to install.\n    1. Click **Details** for more information about the Plugin and instructions you may wish to print or save to help setup the Plugin.\n    1. Click **Install Now** to install the WordPress Plugin.\n1. The resulting installation screen will list the installation as successful or note any problems during the install.\n1. If successful, click **Activate Plugin** to activate it, or **Return to Plugin Installer** for further actions.\n\n### Manual Plugin Installation ###\n\nThere are a few cases when manually installing a WordPress Plugin is appropriate.\n\n* If you wish to control the placement and the process of installing a WordPress Plugin.\n* If your server does not permit automatic installation of a WordPress Plugin.\n* If you want to try the [latest development version](https://github.com/pfefferle/wordpress-webfinger).\n\nInstallation of a WordPress Plugin manually requires FTP familiarity and the awareness that you may put your site at risk if you install a WordPress Plugin incompatible with the current version or from an unreliable source.\n\nBackup your site completely before proceeding.\n\nTo install a WordPress Plugin manually:\n\n* Download your WordPress Plugin to your desktop.\n    * Download from [the WordPress directory](https://wordpress.org/plugins/webfinger/)\n    * Download from [GitHub](https://github.com/pfefferle/wordpress-webfinger/releases)\n* If downloaded as a zip archive, extract the Plugin folder to your desktop.\n* With your FTP program, upload the Plugin folder to the `wp-content/plugins` folder in your WordPress directory online.\n* Go to [Plugins screen](https://codex.wordpress.org/Administration_Screens#Plugins) and find the newly uploaded Plugin in the list.\n* Click **Activate** to activate it.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpfefferle%2Fwordpress-webfinger","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpfefferle%2Fwordpress-webfinger","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpfefferle%2Fwordpress-webfinger/lists"}