CodeSample
(A quick-and-dirty sample of usage) Wiki page edited by gr...@zum.io
- Revision r7
Edited wiki page through web user interface.
Revision r7
Edited wiki page through web user interface.
Nov 02, 2009
CodeSample
(A quick-and-dirty sample of usage) Wiki page edited by gr...@zum.io
- Revision r6
Edited wiki page through web user interface.
Revision r6
Edited wiki page through web user interface.
Nov 02, 2009
CodeSample
(A quick-and-dirty sample of usage) Wiki page edited by gr...@zum.io
- Revision r5
Updated to use the non-deprecated method names and added note re: subscriber_add unit tests.
Revision r5
Updated to use the non-deprecated method names and added note re: subscriber_add unit tests.
issue 2
(Non Ascii Characters cause add to fail) reported by jrlknight
- What steps will reproduce the problem?
1. Use UTF-8 encoded non-ascii character in name
2. call add function
What is the expected output? What do you see instead?
Instead of added email,name, the function exits on unicode string error
What version of the product are you using? On what operating system?
CMAPI-python v1.1
Please provide any additional information below.
What steps will reproduce the problem?
1. Use UTF-8 encoded non-ascii character in name
2. call add function
What is the expected output? What do you see instead?
Instead of added email,name, the function exits on unicode string error
What version of the product are you using? On what operating system?
CMAPI-python v1.1
Please provide any additional information below.
May 25, 2009
issue 1
(Error adding custom fields) reported by jbasul...@qibbus.com
- What steps will reproduce the problem?
1. Call the Function api add_and_resubscribe
What is the expected output? What do you see instead?
this is the expcted output:
<SubscriberCustomField><Key>dni</Key>
<Value>dni</Value>
</SubscriberCustomField>
and it outputs:
<SubscriberField><Key>dni</Key>
<Value>dni</Value>
</SubscriberField>
What version of the product are you using? On what operating system?
v1.1 Mac OS X
Please provide any additional information below.
The line 82 should be changed from:
resp += self._soap_xmlise_dict({ "SubscriberField" : { "Value": v, "Key": k
} })
To:
resp += self._soap_xmlise_dict({ "SubscriberCustomField" : { "Value": v,
"Key": k } })
What steps will reproduce the problem?
1. Call the Function api add_and_resubscribe
What is the expected output? What do you see instead?
this is the expcted output:
<SubscriberCustomField><Key>dni</Key>
<Value>dni</Value>
</SubscriberCustomField>
and it outputs:
<SubscriberField><Key>dni</Key>
<Value>dni</Value>
</SubscriberField>
What version of the product are you using? On what operating system?
v1.1 Mac OS X
Please provide any additional information below.
The line 82 should be changed from:
resp += self._soap_xmlise_dict({ "SubscriberField" : { "Value": v, "Key": k
} })
To:
resp += self._soap_xmlise_dict({ "SubscriberCustomField" : { "Value": v,
"Key": k } })