I am new to steam API. I have been tasked to create a trade bot for a website which will use this to do steam trades, for example accept trade, offer, reject etc. Due to lack of good documentation of Steam, I am struggling to gather basic information actually.
So I want to understand these things:-
What is a trade URL?
How can the bot be able to do transaction on a user's behalf, i mean it's expected to make the transaction from bot's steam account for let's say accepting a trade offer made to a steam user with steamid 111 from another steam user with steamid 222? How it can be done?
Any information will be really helpful!
I found realy nice documentation for Steam API.
You can find it here.
Also, nice resouce SteamDatabase/SteamTracking.
You can check Steam Service status using this service.
NodeJs library Tewki/CSGO-Item-Floats-From-Inspect-Links to work with Steam API.
Hopefully, this information will be usefull.
Good luck.
Related
I am new to transferwise and want to ask if the thing i want to do is achiviable via the wise-api
The platform/business needs to automate one action among others:
Business need to ask the User to pay via Wise whenever they feel like ready.
Business give the balance account details (Wise balance account) (i think it is the borderless account, right? or is one of the overseas balance accounts [usd, eur, gbp...] )
User pay to business
Via webhook (i think so) we manage the user info and linked the stuff to the DB
Would be nice if i can use the "Request money" flow-endpoint which give you a payment-link with 14 days of exp. But i think you can't use that in the api :(
Are someone who made something like this before using wise?
I'm so new to wise and it is my first time implementing a thing like this from scratch (i'm the only backend dev haha)
I tried to folllow the docs, and i see the endpoints to do this in the Postman Collection, but i dont know if can solve the needs of the business.
If this the only way?
I cant use the "Request money" flow with the api?
Big thanks for reading!
I want to create a twitter bot on node.js that notifies about bans / unbans and streams on twitch but I do not know how I have seen several "tutorials" but none shows any way, I am not very experienced in this and it is my first time working with Twitch Api and Twitter Api
Assuming you are familiar with how API works in general and this is to be designed for your own channel, first I would recommend reviewing the Twitch API documentation at https://dev.twitch.tv/docs/api#introduction to learn how to get started with your app.
Once you have your client-ID and Oath2 token you will be better prepared for learning to use the API calls to gather the information you're looking to pull.
For banned users there are two ways you can pull this information with the following requests:
GET https://api.twitch.tv/helix/moderation/banned
https://dev.twitch.tv/docs/api/reference#get-banned-users
and
GET https://api.twitch.tv/helix/moderation/banned/events
https://dev.twitch.tv/docs/api/reference#get-banned-events
Depending on the amount of information you want to gather will determine which requests you want to use.
I hope this helps in your ventures.
I did create a client in Instagram API but I'm in sandbox mode. My wife have a makeup store account and she is doing a giveaway and the rules is comment a post and mention another 3 friends. So, how can I get all the comments of the photo using or not Instagram API?
We have a web application in: www.beautyglamsd.com and I though that I can put the people that already are in the comments.
You can use service like this one to host your giveaway (works for Instagram, Youtube, Tiktok and VK). You can automate all tasks and save your time (check for like, follow, sponsors).
I heard that Instagram recently changed their APIs and I have a related question to that.
Let's assume I would like to build an "Instagram feed app of people I follow". So this app would just show me the pictures of all people I follow. From what I understand this would be possible, but I would always have same manual effort:
From the Instagram developer website I understand that I need the access_token from all my friends.
Do I understand that correctly?
This would mean every time I follow someone new, I would have to get his/her access_token manually and add it into my app.
Do I understand this correctly or is there a programmatic/automated way to get the needed access_token from the new followed person?
Yes, you are correct. This is not possible at the moment. I'm not sure how you would get the access token of friends. You would have to have them login as well. BTW: This seems to be the way facebook is going (since they now control Instagram). They require that both friends have authorized your app and then they will list their followers.
I'm not a coder, but I'm asking on behalf of my web developer who isn't fluent with english, for everyone's expertise.
I'm trying to achieve a real time trade notification on my website.
I have the node.js bot working for all trading purpose already and its interacting with the web with socket.io. Inventory is working. But I do want to add an addtional functionality when the trade offer is send, a notification will also in real time event sent to user on my website at the same time my bot sent a trade offer to the user in steam.
Below is a screenshot example,
https://gyazo.com/ec41e836605f2284f834dd7606693e22
Really appreciate if anyone could help me out.
This all depends on the way you handle your data.
If you are making it so the bot sends a trade offer to the user then when you call your trade offer add in a
socket.emit('tradeOfferSent', {
});
to that user which can be picked up on the client side by
socket.on('tradeOfferSent',function(data) {
});
conversely if you are making your users send trade offers to the bot you can use on 'newOffer' from steam-tradeoffer-manager to emit the data as above.
Inside the on.socket('',function(){}); you are able to add anything you want as an notification. Such as using sweetalerts.