NEWBIE HERE - Social Media Question

Sorry I know you’ve all been through this but I am new so please bare with me.

So I have been playing with some game examples and the simulator. I really love it.

Ok here is what I’d like to tackle as my fist app but I need some help to find the code examples I’m looking for. Yes, I have searched through the code area of the Corona site.

A main screen opens up and has four buttons.

Button one is our Twitter Feed
Button two is our facebook fan page feed
Button three is our youtube channel
Button four is one of the game examples customized to our theme

That sounds reasonable as our fist app doesn’t it?

Can you guy show me around and help a loser newbie out?

Thank you muchly
Peace [import]uid: 99332 topic_id: 16763 reply_id: 316763[/import]

Add URL listeners to your buttons and use webpopups, read the api for more info.

native.showWebPopup(xPos, yPos, WIDTH, HEIGHT, URL, Options)  

If you want to make some fancy supercool app with oAuth, json and hack youtube…your’re in for a nightmare.

Instead I would get the mobile version of the websites and use that URL.

That’s the easiest way, not to sexy but it works fine.
[import]uid: 13560 topic_id: 16763 reply_id: 62776[/import]

Ha wow ok

I figured these would all have been really common and easily available. I did something like this through Conduit http://growlies.mobapp.at/

I will take the keywords you’ve offered and will do more research. Thanks so much for responding. [import]uid: 99332 topic_id: 16763 reply_id: 62778[/import]

So really there are no other social media resources or library’s available? I am really disappointed.

Only one response and really nothing to go on.

It would be awesome if someone showed me some love guys :slight_smile: [import]uid: 99332 topic_id: 16763 reply_id: 63391[/import]

Sorry but most users just post their score or a simple message to twitter or FB when they have set a new highscore etc and for that there’s a buch of fully functional samples you could almost copy/paste here on the site.

I know Peach Pellen had some tutorials on how to do that on her site, she’s out forum guru and help out a lot of people.

The easiest is probably facebook since that is integrated to corona, however if you want to get your wall feed you should look at the fb developer site and check out the graph section. Facebook uses json so you can decode/encode that however you want and since both json and facebook is already built in to corona this should not be too much of a hassle.

Youtube, yuck…

I had a look at the developer site some time ago and it’s not as user friendly as this site. The problem with youtube is that you can’t get the true iOS feel when open videos because you have to exit your app every time you play a video. But there’s two ways I would suggest you could try;

1, If you don’t have too many videos on your channel, you could simply get all your URLs and link them to a tableview. I haven’t tried this and it’s not that professional and I think it’s rather ugly.

2, Since you’re an Ace with json after learning about facebook you could take option 1 but create a remote json file you can edit and update yourself, then when the user loads your app they download the json and the data gets parsed into a tableview. This is pretty much what you would do with facebook.

3, Like I said in my prev post, mobile youtube. This method is the easiest way and doesn’t exit the app. However, since you are basically just putting a web browser in the window the user can browse other youtube vids within your app.

There you have three options, I even threw one extra in…

Now, I used option 3 for an app I did a little while ago and they didn’t notice it and they probably don’t even know what it’s supposed to be like.

When you use youtube mobile, you’ll see they have a navigation bar. My first thought was that if I could position the webview at x,y = 0 then overlay my navBar they wouldn’t see the one inside youtube and therefore they would not be able to browse on youtube.

Unfortunately you can’t overlay display objects on a webview so that didn’t work. Sooner or later Ansca will probably add image overlay to webviews or some other workaround, perhaps they even integrate youtube and easy twitter?

So until then, use webview because that will give the best user experience.
[import]uid: 13560 topic_id: 16763 reply_id: 63444[/import]

Thank you very much for the time you took to offer me a well considered response.

I am surprised that the social world is so wrapped up in proprietary crap world. What a shame.

I appreciate the roadmap much. That is fantastic.

Peace [import]uid: 99332 topic_id: 16763 reply_id: 63450[/import]