diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-06-02 14:56:18 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-06-02 14:56:18 -0400 |
commit | 5674061f550470f1b45c32df6f43966c53f44c9b (patch) | |
tree | 290fa6fa2a5cc2b1418f690ed8259722e91d2152 | |
parent | 0ed925c5907b55993d7aa2858d3f8f6c6c50f60b (diff) |
fix URLs for OMB endpoints
darcs-hash:20080602185618-84dde-222f44fcdd6d085b9c3ef26f03738e120be55fae.gz
-rw-r--r-- | lib/omb.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/omb.php b/lib/omb.php index fc873d0d5..d7fa70195 100644 --- a/lib/omb.php +++ b/lib/omb.php @@ -27,8 +27,8 @@ define('OMB_NAMESPACE', 'http://openmicroblogging.org/protocol/0.1'); define('OMB_VERSION_01', 'http://openmicroblogging.org/protocol/0.1'); define('OAUTH_DISCOVERY', 'http://oauth.net/discovery/1.0'); -define('OMB_ENDPOINT_UPDATEPROFILE', OMB_NAMESPACE.'updateProfile'); -define('OMB_ENDPOINT_POSTNOTICE', OMB_NAMESPACE.'postNotice'); +define('OMB_ENDPOINT_UPDATEPROFILE', OMB_NAMESPACE.'/updateProfile'); +define('OMB_ENDPOINT_POSTNOTICE', OMB_NAMESPACE.'/postNotice'); define('OAUTH_ENDPOINT_REQUEST', OAUTH_NAMESPACE.'endpoint/request'); define('OAUTH_ENDPOINT_AUTHORIZE', OAUTH_NAMESPACE.'endpoint/authorize'); define('OAUTH_ENDPOINT_ACCESS', OAUTH_NAMESPACE.'endpoint/access'); |