Advertisement
Guest User

Untitled

a guest
Apr 19th, 2015
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. {
  2. "kind": "youtube#channelListResponse",
  3. "etag": ""IHLB7Mi__JPvvG2zLQWAg8l36UU/cElfTza4UGHG8g6mYtCKSIOXxq0"",
  4. "pageInfo": {
  5. "totalResults": 1,
  6. "resultsPerPage": 5
  7. },
  8. "items": [
  9. {
  10. "kind": "youtube#channel",
  11. "etag": ""IHLB7Mi__JPvvG2zLQWAg8l36UU/EGw-f95GMJ7EnCAhVPMzL1JSykQ"",
  12. "id": "UCxAICW_LdkfFYwTqTHHE0vg",
  13. "statistics": {
  14. "viewCount": "107418936",
  15. "commentCount": "295",
  16. "subscriberCount": "428265",
  17. "hiddenSubscriberCount": false,
  18. "videoCount": "2270"
  19. }
  20. }
  21. ]
  22. }
  23.  
  24. function test() {
  25.  
  26. $url = "https://www.googleapis.com/youtube/v3/channels?part=statistics&forUsername=youtube&key={key}";
  27. $json = file_get_contents($url);
  28. $json_data = json_decode($json, true);
  29. echo $json_data["kind"];
  30.  
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement