How to access Webservices(eventful.com) from Phonegap - soap

How to Access Particular website like (eventful.com) API in Phonegap using Xml Parsing, For eg I will press search button by texting like "Banglore" in my phonegap means it retrieve events in banglore from eventful website.please give a simple and clear demo using some sample websites. Thanks in advance

Related

Uber universal link ending in endless loop

I'm trying to use an Uber universal link on iOS. Following the affiliate program page documentation (here), I'm using a link like this: https://m.uber.com/ul/?client_id=<CLIENT_ID>.
When I use a dummy client id (or don't put one at all) and open it in Safari, the link prompts me to open the App Store.
When I put my actual client id, I end up in an infinite redirect loop between uber.com and launch1.co.
Should I do something to enable this feature for my client id?
EDIT: this is a bug, it will be fixed.

Events triggering loading content on Facebook's timeline

I am working on Apache Nutch modification project. We already swapped Nutch's original module with ours built using HtmlUnit. I need to download whole Facebook user site (ex. http://www.facebook.com/profile.php?id=100002517096832), which is going to be parsed using our own parser. Unfortunately Facebook is using mechanism called BigPipe (http://www.facebook.com/note.php?note_id=389414033919). That's why most of current website is hidden in <.!-- --> tags.
Usually when we scroll down Facebook page, new content is being unpacked every time we are about to hit bottom of the page. I have tried to use Javascript that scroll my htmlPage (HtmlPage object from HtmlUnit project), but finally I realized that scrolling is not triggering loading new content on Facebook user site.
How can I check, what event on page triggers loading content on current Facebook page? Maybe I should approach problem from different side, for example try to extract BigPipe "things" on my own? Have you ever did that?
Before dealing to your question … what kind of project are you trying to build there?
Since Apache Nutch is an open source web-search software, I think you are trying to build some kind of search engine, that scrapes Facebook user profiles/feeds to get data and make it searchable on some third-party website?
Well, that would be a violoation of Facebook Platform Policies:
I. Features and Functionality
12. You must not include data obtained from us in any search engine or directory without our written permission.
So, do you have that written permission?

How to use Twitter Kit Individual Share option in iPhone

need favour in twitter code
hello,
i need a little favour if any buddy have working twitter code then please share... i waste 3 days for that but nothing going good .. following are the thing i research and implement too much [/I]
1- Sharekit :
I use share kit but my current scenario is that i have custom facebook app and custom twitter ... facebook are implement and running ok ... not use sharekit api for facebook.
but i try the twitter source in share but it has too much hard to understand because they have manages all the objects in the items list in UIActionSheet.. and i only want to use twitter code and when i do to seperate its goona crazy..
2- MGTwitterEngine:
I also try this but the code is not working after OAuth authentication its crashes the app .. and not tweet the string.
Note:
I care the text length i only tweet 20 characters ..
Outcome What I Request:
I want a twitter code which is simply implements and also have simple to integrate.. I only tweet ... please give me simple code and i am very thankful if you give me here and tell me how its work .. because i am too much exhaust..
Thanks :)
but i try the twitter source in share but it has too much hard to understand because they have manages all the objects in the items list in UIActionSheet.. and i only want to use twitter code and when i do to seperate its goona crazy..
If you check the documentation for ShareKit, you will see that it is trivial to share with a specific service instead of triggering the action sheet.

iPhone web services NSURL

hi I am working on an application which takes data from a website and it displays it in table. I have been sucessful in making like an RSS feed (made like a twitter feed so I think it is an xmlparser) but now I want to get data from a website which doesn't have RSS feed in it..I just want to get the titles from the webpage.... any suggestion how do I do it without the XMLParser...
thanks
I think that the best way is to create on your server a php/asp/... page that will scrape data from the remote website.
Then, in that page, you can use some CURL to scrape data.
See here.
Next, you return the data in the format you want (XML/jSon/etc...).
Finally, you can easily call that script from your code.
On the other hand, pay attention to not scrape anything as skimming is generally illegal and Apple ca reject your app because of that.
There is a nice post talking about it.

titanium webview - go to default browser when clicking links

in titanium, i'm using the webview to display a wordpress blog page, that is already formatted for mobile browser. instead of writing my own interface, this works as a good work around. the apps sole focus isn't the browser.
but my issue lies, when the user clicks a link outside of the initial displayed domain. i only want the main domain to be displayed in the apps browser. if any other link is clicked, that takes the user outside of that domain, i want to have it open in the phones default browser.
can anyone point me in a direction for this. i tried adding a listener to try and catch link clicks, however, i've been unsuccessful.
thanks
in this blog posting I show how to find links in a webpage and change the link behavior. Using the same method, you can intercept the links and redirect to opening the URL in the devices default browser
One solution would be to catch the onclick() Event by Javascript inside the WebView (your blog code) and handle this by a custom handler. Maybe you can inject the javascript event handler code into the running WebView through Titanium.
Another solution is to make your blogposts readable for app technology and create a new data interface. This is the way I would do. For that I would use some kind of JSON data format and a simple REST Interface to get the data.
I don't think bove solutions are that simple. If you want an app with "great feeling", you'll have to handle the events by your own. Maybe Phonegap would be a better solution four your problem. But there you will still need a kind of REST/JSON interface for your blog data. The idea behind an app is, that the main code is in your app and you get the content from a remote source. This way you'll get an advantage compared to a simple browser optimized site.