フォトログは、最近閉じていると私はそこにバックアップする鉱山のすべての写真を望んでいました。便利な何かを探して、私はこのプロジェクトを見つけました:https://github.com/firstdoit/fotolog-backupエラー:{[エラー:のgetaddrinfo ENOTFOUND]コード:「ENOTFOUND」、エラー番号:「ENOTFOUND」、システムコール:「のgetaddrinfo」}
私はREADME
の指示でNPMとコーヒーをインストールしますが、私が実行しようとすると:
coffee fotolog-build-index.coffee ticinowriting2
私はこのエラーが表示されます。
[email protected]:~/fotolog-backup$ coffee fotolog-build-index.coffee ticinowriting2
{ [Error: getaddrinfo ENOTFOUND] code: 'ENOTFOUND', errno: 'ENOTFOUND', syscall: 'getaddrinfo' }
「フォトログ・ビルド・インデックス」のコードは次のとおりです。
request = require 'request'
$ = require 'cheerio'
fs = require 'fs'
imageURLs = []
user = process.argv[2]
throw new Error("Usage: coffee fotolog-build-index.coffee <username>") unless user
buildIndexFromPage = (page) ->
request "http://www.fotolog.com.br/#{user}/mosaic/#{page}", (err, resp, html) ->
return console.error(err) if err
console.log "finished page #{page}... adding images"
images = $.load(html)("a.wall_img_container img")
images.map (i,img) ->
imageURLs.push $(img).attr("src").replace('_t','_f')
if images.length < 30
console.log imageURLs
console.log "got #{imageURLs.length} images"
fs.writeFileSync('index.json', JSON.stringify(imageURLs))
else
buildIndexFromPage(page + 30)
buildIndexFromPage(0)
私の悪い英語のため申し訳ありませんが、スイスと私からのイムは、エラーがDNSリゾルバは、IPアドレスにホスト名(www.fotolog.com.br
)を解決できませんでした意味コード
をありがとう、私はinfo.fotolog.comで試してみました出来た!どうもありがとう –