Tumblr API - Tagged Posts

Developer
Size
2,096 Kb
Views
74,888

How do I make an tumblr api - tagged posts?

Display Tumblr posts with specific tags. What is a tumblr api - tagged posts? How do you make a tumblr api - tagged posts? This script and codes were developed by Juan Vargas on 14 October 2022, Friday.

Tumblr API - Tagged Posts Previews

Tumblr API - Tagged Posts - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Tumblr API - Tagged Posts</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <div id="posts"> <h3>Tumblr API - Tagged Posts</h3>
</div> <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script> <script src="js/index.js"></script>
</body>
</html>

Tumblr API - Tagged Posts - Script Codes CSS Codes

body { font-family:Arial; font-size:13px; background:#f4f4f4;
}
p { margin: 6px 0; color: #444; font-size: 14px; line-height: 26px; font-weight: 300;
}
h2 { font-size: 17px; line-height: 28px; margin:0px;
}
#posts { width:980px; margin:0 auto;
}
img { max-width:100%; }
.item { background: #fff; border: solid 1px #f1f1f1; border-radius: 3px; padding:12px; width:250px; float:left; margin-right:10px;
}

Tumblr API - Tagged Posts - Script Codes JS Codes

$.ajax({ url: 'https://api.tumblr.com/v2/blog/ttumbline.tumblr.com/posts?api_key=B5Kb46SjUOGxT9WlYekcs3izcwzMfAlR5ucf8Xvic7MrbsZMxP&tag=movie', dataType: 'jsonp', type: 'GET', success: function(data) { for (var i = 0; i < 6; i++) { var title = data.response.posts[i].title; var body = data.response.posts[i].body; var post = $("<div class='item'>").append(body); $('#posts').append(post); } } , error: function(data) { $('#posts').html("Error"); }
});
Tumblr API - Tagged Posts - Script Codes
Tumblr API - Tagged Posts - Script Codes
Home Page Home
Developer Juan Vargas
Username juanv911
Uploaded October 14, 2022
Rating 3
Size 2,096 Kb
Views 74,888
Do you need developer help for Tumblr API - Tagged Posts?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Juan Vargas (juanv911) Script Codes
Create amazing art & images with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!