Search
Page 1 of 1 (6 items)
-
Here is my Python:
import webapp2
import urllib
from google.appengine.api import urlfetch
class MainHandler(webapp2.RequestHandler):
def get(self):
self.response.headers['Content-Type'] = 'text/plain'
url = ...
-
Thanks for your response Dave.
I am hoping to use Google App Engine with Python. I am using the urllib.urlencode() function. In my dictionary I have {arrInsertFieldArray : ['name', 'assignedTo']}. I pass the dictionary to urlencode() and send the resulting string to Method, but I am not ...
-
That's great news. Thanks for your help.
-
The information at https://www.methodintegration.com/MethodAPI/service.asmx?op=MethodAPIInsertV2 appears to indicate that you can call the API with a simple HTTP post. I would like to avoid the overhead of SOAP. I tried guessing a few delimters to pass the arrInsertValueArray and arrInsertValueArray but I didn't get anywhere. Is this ...
-
Thanks for checking Jason. Did you hear anything back from the developers?
-
I have a custom table called Events. When I delete an event, I want to delete all the records related to the event in the EventComments table.
I have a grid with events on my custom screen, and the following actions:
1. Show message with a confirmation buttion.
2. Loop through checked items on the grid
3. Delete record from table Event ...
Page 1 of 1 (6 items)
|
|
|