Skip to content

Any way change profile settings? #326

Answered by rossengeorgiev
OliverTrust asked this question in Q&A
Discussion options

You must be logged in to vote

It's just a single request.

wa = WebAuth('<username>')
wa.cli_login()

resp = wa.session.post('https://steamcommunity.com/profiles/{:d}/edit/'.format(wa.steam_id),
                       files={'json': (None, 1)},  # forces multi-part encoding
                       data={
                         'sessionID': a.session_id,
                         'type': 'profileSave',
                         'personaName': 'PinkComodo',
                         'real_name': 'John Smith',
                         'customURL': '',
                         'summary': 'line1\nline2\nline3\n🔥🔥🔥',
                         'country': 'US',
                         'state': 'CA',
                         'city'

Replies: 6 comments 2 replies

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by rossengeorgiev
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
2 replies
@rossengeorgiev
Comment options

@rossengeorgiev
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants
Converted from issue

This discussion was converted from issue #314 on April 22, 2021 17:50.