Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8865797
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T16:36:33+00:00 2026-06-14T16:36:33+00:00

My Django app will be handling post data from a 3rd party payment processor.

  • 0

My Django app will be handling post data from a 3rd party payment processor. I would like to use a Django form to sanitize and deal with this data, but the POST variables have names that are not valid names for Django form fields. How can I re-map these to my form?

So, I have a form:

class PayResponseForm(forms.Form):
    status = forms.Charfield()
    message = forms.CharField()
    avs_code = forms.CharField(max_length=1)

And the post I get from the 3rd part site looks like:

request.POST['FinalStatus']
request.POST['MErrMsg']
request.POST['avs-code']

How do I map these post variable to my form fields? Will it cause problems if, in my view, I just do something like request.POST['status'] = request.POST['FinalStatus']?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T16:36:36+00:00Added an answer on June 14, 2026 at 4:36 pm

    You can create your own dict for form init:

    if request.method == 'POST':
        if need_to_convert_post(request):
            post = {
                'field1': None,
                'field2': None,
                'field3': None,
            }
            post['field1'] = request.POST.get('SomeOtherField1', None)
        else:
            post = request.POST
        form = Form1(post)
    else:
        form = Form1()
    

    and detect when you need to change post:

    def need_to_convert_post(request):
        if 'uniqueCheckField' in request.POST:
            return True
        return False
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

An Android/Iphone app will be accessing application data from the server. [Django-Python] How can
I have a Django app that gets it's data completely from an external source
I have a django app running on heroku. I would like to run my
I am building a simple Django app that will use scribd to display documents.
I have a Django app where multiple teams upload content that will be parsed.
We're replacing a static web-site with a Django app. All the uri's will change.
I've started a django project that will include an analytics app. I want that
I am working on a django project which will contain several apps. Each app
I'm using heroku to develop a Django app and they use git to push
I want to serve my Django app the current time which clients will parse

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.