本篇內(nèi)容介紹了“metaWeblog同步博客遇到的問(wèn)題怎么解決”的有關(guān)知識(shí),在實(shí)際案例的操作過(guò)程中,不少人都會(huì)遇到這樣的困境,接下來(lái)就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
成都創(chuàng)新互聯(lián)服務(wù)項(xiàng)目包括瀍河網(wǎng)站建設(shè)、瀍河網(wǎng)站制作、瀍河網(wǎng)頁(yè)制作以及瀍河網(wǎng)絡(luò)營(yíng)銷(xiāo)策劃等。多年來(lái),我們專(zhuān)注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術(shù)優(yōu)勢(shì)、行業(yè)經(jīng)驗(yàn)、深度合作伙伴關(guān)系等,向廣大中小型企業(yè)、政府機(jī)構(gòu)等提供互聯(lián)網(wǎng)行業(yè)的解決方案,瀍河網(wǎng)站推廣取得了明顯的社會(huì)效益與經(jīng)濟(jì)效益。目前,我們服務(wù)的客戶(hù)以成都為中心已經(jīng)輻射到瀍河省份的部分城市,未來(lái)相信會(huì)繼續(xù)擴(kuò)大服務(wù)區(qū)域并繼續(xù)獲得客戶(hù)的支持與信任!
技術(shù)上使用metaWeblog就可以實(shí)現(xiàn)上述目的,選用python的xmlrpclib可以方便的進(jìn)行xmlrpc操作。做一個(gè)控制臺(tái)的小程序足夠了我使用了。
然后開(kāi)始技術(shù)實(shí)驗(yàn),發(fā)現(xiàn):
wordpress支持metaWeblog很好,可以實(shí)現(xiàn)所有的功能。從wordpress可以通過(guò)metaWeblog.getRecentPosts函數(shù)得到所有的文章。
cnblogs也支持metaWeblog,也支持的很好。cnblogs也支持我的語(yǔ)法高亮。但遺憾的是:第一:metaWeblog.getRecentPosts函數(shù)最多能夠返回100個(gè)文章。而我的cnblogs目前有230篇文章,很顯然,cnblogs限制了文章數(shù)量;第二:metaWeblog.newPost函數(shù)即便Post結(jié)構(gòu)中有dateCreated,但cnblogs的主界面中依然按照當(dāng)前時(shí)間計(jì)算,造成文章時(shí)間對(duì)不上號(hào),順序混亂。
csdn就是個(gè)垃圾,metaWeblog表面上支持,暗地里出問(wèn)題。metaWeblog.getRecentPosts,metaWeblog.editPost都無(wú)法用,提示User not exist。僅有metaWeblog.newPost可以用,但csdn的blog的語(yǔ)法高亮無(wú)法用,頁(yè)面很難看。
所以,想實(shí)現(xiàn)我的目的通過(guò)metaWeblog看來(lái)是沒(méi)希望了。除非cnblogs調(diào)整文章數(shù)量限制,csdn希望從垃圾變成戰(zhàn)斗機(jī)了。
附我寫(xiě)的一個(gè)測(cè)試代碼,不完善,僅作為參考:
import xmlrpclib class Metablog: def __init__(self, url, username, password): self.username=username self.password=password self.url=url self.server=xmlrpclib.ServerProxy(url) self.posts=None def getAllPosts(self): print "Getting all posts from "+self.url self.posts=self.server.metaWeblog.getRecentPosts('', self.username, self.password, 9999999) print "found "+ str(len(self.posts)) +" posts" return self.posts; def getAllPostTitle(self): if self.posts==None: self.getAllPosts() ret=dict() for post in self.posts: ret[post["postid"]]=post["title"] return ret def getPost(self, id): for post in self.posts: if post["postid"]==id: return post return None def newPost(self, post): self.server.metaWeblog.newPost('', self.username, self.password, post, True) def editPost(self,postid, post): self.server.metaWeblog.editPost(postid, self.username, self.password, post, True) def delPost(self, postid): self.server.metaWeblog.deletePost('',postid, self.username, self.password, True) def syncBlog(b1, b2): b1Titles=b1.getAllPostTitle() b2Titles=b2.getAllPostTitle() for key1,value1 in b1Titles.iteritems(): print "Blog1 title: "+value1 for key2,value2 in b2Titles.iteritems(): print "tBlog2 title: "+value2 if value1==value2: print "Syncing, blog 2 postid="+key2 b2.editPost(keys2, b1.getPost(key1)) break print "Blog2 has no article equal to title :"+value1 print "Add new " b2.newPost(b1.getPost(key1)) print "Done sync" wpBlog=Metablog("主站地址", "用戶(hù)名", "密碼") cnBlog=Metablog("從站地址", "用戶(hù)名", "密碼") syncBlog(wpBlog, cnBlog)
“metaWeblog同步博客遇到的問(wèn)題怎么解決”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!
網(wǎng)站標(biāo)題:metaWeblog同步博客遇到的問(wèn)題怎么解決
鏈接分享:http://www.rwnh.cn/article0/jsceio.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供品牌網(wǎng)站制作、網(wǎng)站內(nèi)鏈、外貿(mào)建站、全網(wǎng)營(yíng)銷(xiāo)推廣、做網(wǎng)站、外貿(mào)網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話(huà):028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)