Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Mark MacDermot
4,488 PointsBummer! An incorrect feed URL was created. For example, if "MikeTheFrog" is passed into the function then "http://myapi
Im stuck on task 2 of the Json code challenge. Need help and advice on this. What am i doing wrong on this?
<?php
function my_plugin_get_profile($my_plugin_username) {
$json_feed_url = 'http://myapi.net/' . $wpmyplugin_username . '.json';
$args = array( 'timeout' => 120);
$json_feed = wp_remote_get( $json_feed_url, $args );
return $json_feed;
}
?>
1 Answer

Philip G
14,600 PointsWell, I could be wrong because I'm not familiar with WP but don't you have to use the value passed to the Function?
<?php
function my_plugin_get_profile($my_plugin_username) {
$json_feed_url = 'http://myapi.net/' . $my_plugin_username . '.json';
$args = array( 'timeout' => 120);
$json_feed = wp_remote_get( $json_feed_url, $args );
return $json_feed;
}
?>
Mark MacDermot
4,488 PointsMark MacDermot
4,488 PointsThanks for your help! I revised it and now it working! I forgot to use the value passed the function thats why!