How To Attach an Image with Blog post - Google Blogger API - C# - VB.Net
I am using this code to create new post on blogger but I was searching that how to attach and upload an image with our post. Imports Google.GData.Blogger Imports Google.GData.Client Dim service As New BloggerService("<my apps name>") service.Credentials = New GDataCredentials("<email>", "<apps password>") Dim newPost As AtomEntry = New AtomEntry() newPost.Title.Text = "Test Title" newPost.Content = New AtomContent() newPost.Content.Content = "<h2>Test HTML Content</h2>" newPost.Content.Type = "html" Dim response As AtomEntry = Nothing Dim blogFeedUri As Uri = New Uri("http://www.blogger.com