health03adv / google-gdata

Automatically exported from code.google.com/p/google-gdata
0 stars 0 forks source link

Blogger: Post URLs build logic changed #557

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
using Google.GData.Client.Service.Insert() to create a new blog post
Example:
(AtomEntry newPost)
...
newPost.Title.Text = "Closing Soon - Weaver Snacks - Sale #2";
newPost.Content = new AtomContent();
newPost.Content.Content = "This event will be closing in less than 2 days. To 
place a bid or find out more, visit ....";
newPost.Content.Type = "html";
Uri blogFeedUri = new Uri("http://www.blogger.com/feeds/" + blogId + 
"/posts/default");
m_service.Insert(blogFeedUri, newPost);
...

What is the expected output? What do you see instead?
Expected:
the post URL being built from newPost.Title.Text, e.g. 
http://go-dove-test.blogspot.com/2011/11/closing-soon-weaver-snacks-sale-2.html
Instead:
the post URL being built from a part of newPost.Content.Content, e.g. 
http://go-dove-test.blogspot.com/2011/11/this-event-will-be-closing-in-less-than
.html
This has changed at some point between Nov. 10th and Nov. 16th; no code change 
on our side.

What version of the product are you using? On what operating system?
1.9.0.0 on e.g. Windows Server 2003 R2

Original issue reported on code.google.com by nospam...@online.de on 18 Nov 2011 at 11:42

GoogleCodeExporter commented 8 years ago
Thanks for the report, that was actually a bug on our side that we already 
fixed. The fix is not live yet as it is going through our QA/release process, 
but no action is required on your side or in the client library.

Original comment by ccherub...@google.com on 21 Nov 2011 at 7:20

GoogleCodeExporter commented 8 years ago
Thanks for the quick response.

Original comment by nospam...@online.de on 22 Nov 2011 at 11:47