Giter VIP home page Giter VIP logo

newsstand's People

Contributors

erorus avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

newsstand's Issues

Website offline

Is not code related but I didn't find any way to contact you.

The site seems to be offline since 2PM (CEST) of today (29/06/2019).

The error receiving is:

ERR_CONNECTION_TIMED_OUT

Please alter TUJ addon script to support item parameter as itemID number in TUJMarketInfo

TSM already supports this, but TUJ does not for some reason. It is a serious issue with the new AH where in groups only have itemID or a battle pet link via GetItemKeyInfo(). Being able to filter prices by itemID via new AH group min price is great for snipers and or other AH addons.

line 164:
elseif (type(item) == 'string') then
        _, link = GetItemInfo(item)
        if not link then return tr end  -- this will always be nil when you query over 5000 items using just a number itemID passed to item. Thus the need for the other else at the bottom to simply convert the number to a string and pass it on as dataKey to TUJ lookup table. Otherwise, we always get just a blank table back when dealing with raw itemID numbers. No need to lookup a link if it is just an itemID, as that link will not provide the bonus ids.

        local itemString = string.match(link, "item[%-?%d:]+")
        local itemStringParts = { strsplit(":", itemString) }
        iid = itemStringParts[2]
        dataKey = iid

        pricingLevel = 0
        local _, _, _, _, _, itemClass = GetItemInfoInstant(item)
        if (itemClass == 2) or (itemClass == 4) then
            local effectiveLevel, previewLevel, origLevel = GetDetailedItemLevelInfo(item)
            pricingLevel = effectiveLevel
            if not addonTable.marketData[dataKey .. 'x' .. pricingLevel] then
                local low, high = math.min(effectiveLevel, previewLevel or effectiveLevel, origLevel), math.max(effectiveLevel, previewLevel or effectiveLevel, origLevel)
                for i=low,high,1 do
                    if addonTable.marketData[dataKey .. 'x' .. i] then
                        pricingLevel = i
                    end
                end
            end
        end

        if pricingLevel > 0 then
            dataKey = dataKey .. 'x' .. pricingLevel
        end
else
	iid = tostring(item);
	dataKey = iid;
	pricingLevel = 0;
end

Missing Shadowlands Professions

Looks like TUJ hasn't been updated for shadowlands yet. Not sure if this is something already being worked on but it's definitely something desired by the wow economy community (as seen in this reddit post).

Banned me for no reason and now how to fetch bulk data?

I was trying to simply query about 700 items like this:

https://theunderminejournal.com/api/item.php?house=241&item=something
sleep(100)

I realise I put sleep too low, but there was no where on the tuj page that said anything about rate limits, and why am I perma banned now? usually API's just time you out so you can adjust your code and try again in a few min. Is it possible to be unbanned please?

It would be a lot easier if I could just query every single item in one go, is there such a thing?
Thanks

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.