Joind.in's API
I speak at many conferences and more and more of those conferences are using a service called joind.in. The joind.in website allows attendees of conferences to leave feedback for the speakers, organisers and sponsors. For me as a speaker this feedback by attendees is very important (as long as the comments are constructive). I use those comments to tweak and improve my presentations if I give them at a later moment.
The joind.in website also provides an API that allows you to talk to the service from other applications and sites. I've now integrated this in my site (at the talks page). It uses JQuery's ajax functionality to talk to the backend which queries (and caches) the joind.in API requests. In order to make API calls, you need to make POST requests to a specific URL. The URL depends on what type of object you want to use. For example, there is http://joind.in/api/talk for requesting information about talks, and http://joind.in/api/user for fetching information about users.
Requests can be either made in XML, or with JSON. A simple example to request all comments for a specific talk can be done with something like:
<?php
$id = 1240;
$requestData = <<<ENDD
{"request":{
"action":{
"type":"getcomments",
"data":{"talk_id":$id}
}
}}
ENDD;
$data = do_post_request(
'http://joind.in/api/talk',
$requestData,
'Content-type: application/json'
);
foreach( json_decode( $data ) as $comment )
{
/* ... */
}
?>
The do_post_request() code I lifted from Wez' page, and looks like:
<?php
function do_post_request($url, $data, $optional_headers = null)
{
$params = array(
'http' => array(
'method' => 'POST',
'content' => $data
)
);
if ( $optional_headers !== null) {
$params['http']['header'] = $optional_headers;
}
$ctx = stream_context_create( $params );
$fp = fopen( $url, 'rb', false, $ctx );
$response = stream_get_contents( $fp );
return $response;
}
?>
I am also fetching the full name for each user. Because this could mean that I have to do a lot of requests I am caching them with eZ Components' Cache component.
You can see the code operational on the talks page, by clicking on the little joind.in logo after each talk that is on the site. If JavaScript is disabled, the logo turns into a link that takes you to the joind.in site with all the comments.
Comments
From an application design perspective; given the update ratio of those talks after the event is over, why would you want to do this with ajax (even though you cache things). Wouldn't it be better to do this asynchronously and fetch them regularly using a cron script, and have them available on the spot? Saves the 'fetching from joind.in...' wait time.
@Ivo: I suppose I could. I think there will be so little people actually checking this, that in the current form there will actually be less calls to the joind.in API. It was also a little experiment with JQuery :-)
I didn't even know that joind.in had an API. How long ago was this API introduced?
@Anna: I've no idea really... it's been there for a while. I suppose that makes integrating it easier? :-)
Well I'm glad to see that joind.in has one. I needed it for my event but never got an answer from Chris on that subject. Then I saw your blog post. Thanks!
Interesting that you created a JSON object by hand; why not create it as a normal PHP data structure and then convert it to JSON with json_encode()?
@Ken: No real reason except that it is a bit more clear what happens here. In the most idea case, I should simply have to request (with GET) http://joind.in/api/talk/getcomments/<id> though.
Life Line
I know my French is pretty terrible, but I'm sure I'm closer to the correct answer than what's shown here...
Merge branch 'v2022'
Merge pull request #169 from psumbera/solaris-2
I walked 7.0km in 1h6m48s
Fixed some ffing sidewalks again.
I walked 10.5km in 1h40m26s
Updated a pet_grooming shop
I walked 8.6km in 2h12m58s
I walked 8.7km in 1h24m16s
Updated a restaurant
I walked 2.4km in 24m20s
I walked 6.6km in 1h4m32s
I walked 0.6km in 4m38s
I walked 8.5km in 1h22m35s
Merged pull request #1029
Reflow some comments
Add comments, add end of file newlines, fix php 8.5 compilation
Benchmark Xdebug performance
Merged pull request #1051
PHP 8.6: printf() is now optimised out if it only uses %s and %d (and…
PHP 8.6: The object IDs of objects changed in tests
PHP 8.6: ZSTR_INIT_LITERAL() no longer takes non-literals, so use zen…
PHP 8.6: WRONG_PARAM_COUNT has been removed in favour of zend_wrong_p…
PHP 8.6: zval_dtor() has been deprecated in favour of zval_ptr_dtor_n…
Update test for version constraints, as well as the error messages


Shortlink
This article has a short URL available: https://drck.me/joind.ins-api-7rl