Docker: unauthorized: incorrect username or password.
While running docker commands with some images, I started getting error: The…
February 27, 2018
Here, we give exact response from youtube apis.
{
"kind": "youtube#videoListResponse",
"etag": "etag of video",
"pageInfo": {
"totalResults": 1,
"resultsPerPage": 1
},
"items": [
{
"kind": "youtube#video",
"etag": "etag of video",
"id": "video id",
"snippet": {
"publishedAt": "2017-08-07T10:11:04.000Z",
"channelId": "channel id",
"title": "title ",
"description": "description of video",
"thumbnails": {
"default": {
"url": "direct image url",
"width": 120,
"height": 90
},
"medium": {
"url": "direct image url",
"width": 320,
"height": 180
},
"high": {
"url": "direct image url",
"width": 480,
"height": 360
},
"standard": {
"url": "direct image url",
"width": 640,
"height": 480
}
},
"channelTitle": "Channel title",
"tags": [
"bunch of tags, if given"
],
"categoryId": "26",
"liveBroadcastContent": "none",
"defaultLanguage": "en-GB",
"localized": {
"title": "title",
"description": "description"
},
"defaultAudioLanguage": "en-GB"
},
"contentDetails": {
"duration": "PT3M9S",
"dimension": "2d",
"definition": "hd",
"caption": "false",
"licensedContent": true,
"projection": "rectangular"
},
"statistics": {
"viewCount": "7808",
"likeCount": "79",
"dislikeCount": "4",
"favoriteCount": "0",
"commentCount": "2"
},
"topicDetails": {
"relevantTopicIds": [
"/m/019_rr",
"/m/03glg",
"/m/019_rr",
"/m/03glg"
],
"topicCategories": [
"https://en.wikipedia.org/wiki/Lifestyle_(sociology)",
"https://en.wikipedia.org/wiki/Hobby"
]
}
}
]
}
While running docker commands with some images, I started getting error: The…
Introduction Assume you have a drupal website and using cloudflare. You are…
Introduction In this guide, We will get basic understanding of various options…
Introduction Drupal is an awesome CMS. Drupal content type form, allows you to…
Introduction When I migrated all of my drupal-7 website to drupal-8, I wrote…
One of the biggest task while writing article or blog is to have right set of…
In this post, we will see some of the frequently used concepts/vocabulary in…
System design interview is pretty common these days, specially if you are having…
Introduction You are given an array of integers with size N, and a number K…
Graph Topological Sorting This is a well known problem in graph world…
Problem Statement Given a Binary tree, print out nodes in level order traversal…
Problem Statement Given an array nums of n integers and an integer target, are…