Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialRenee Wilson
9,820 Pointsjson_feed = wp_remote_get( json_feed_url, $args );
I'm again having an issue again. I have tried it several different methods and nothing is working. What am I doing wrong?
<?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 );
}
?>
2 Answers
Erik McClintock
45,783 PointsRenee,
The problem here seems to be that you're missing the $ on your json_feed variable and on your json_feed_url argument.
You have:
json_feed = wp_remote_get( json_feed_url, $args );
You want:
$json_feed = wp_remote_get( $json_feed_url, $args );
Make that simple fix, and you should be on your way!
Erik
Renee Wilson
9,820 PointsThanks so much Erik