How can I embed latest/newest song from soundcloud? - soundcloud

How can I embed a users latest song/ most recently posted onto my website via sound cloud's embed function?
I have tried changing the api.soundcloud.com/tracks to users and so on.
I have also tried to use the documentation soundcloud has provided without any luck.

Related

Apps playable directly in a Facebook newsfeed

Today I stumbled upon a app that was playable directly in a Facebook newsfeed Newsfeed SmartApps.
How is this possible? Is there a new feature that I might have missed? If so, how do I build such an app myself?
They used to have that described under the name “Feed Gaming” in the docs at one point, but I think that section has now been removed.
Basically all this is, is an SWF flash file, embedded via Open Graph meta tags as a “video” – details for that see here, https://developers.facebook.com/docs/sharing/webmasters#video
Of course that won’t work on mobile devices that don’t have flash – but currently, it is the only way.
(Some FB partners can also embed HTML5 content as an iframe directly into newsfeed – but normal 3rd-party apps can not do that, as of now.)

Integrate Google Hangouts on Air with your website like webinarjam

I'm having a hard time finding the right information, but we are working on a project where users would be able to create/schedule live webinars that would run off Google's Hangout On Air.
A user would be on our website and schedule the webinar which would create a hangout on air with google and send back the youtube link so it could be embedded into the users page on our website. Now I know how to embed a single hangout, but you have to run through googles interface to set it up.
I found a company called webinarjam that actually accomplished this, but I cannot figure out how or what API they tapped into. So would you know how to accomplish this or another alternative that would have a simple interface?

Custom embedded player in Facebook posts

I have built an audio sharing application (pretty similar to soundcloud.com, but focused on a niche and just one country). I'd like to enable people to hear the tracks directly from Facebook, like they can do it with eg. Spotify.
I am having a trouble with getting development docs on how to do that.
Cheers,
Pablox
Deep-integration with Facebook (such as Spotify have done) is done via the Open Graph APIs, the beta documentation is covered here: https://developers.facebook.com/docs/opengraph
If you just want users to be able to embed a player in posts/likes of your content, any app can do this with the use of meta tags on the pages, and this is covered under 'Attaching Audio and Video Data' on the Open Graph documentation

How to get uploaded tracks from soundcloud?

I have implemented Sound cloud api in my app to export songs to soundcloud.
Now,I want to launch a browser in my app.This browser will allow the user to browse and listen to various other users songs that have been exported to SoundCloud through my app.
Also,the songlist should not include tracks which are not uploaded through my app.
The following is a screenshot from an app which uses similar functionality:
The only change in my app will be that I dont want the Sessions list.
Please suggest how to do this.
I am with an answer for my question. wat a relief.. :)
To get the app id first, the url is to be resolved by:
http://api.soundcloud.com/resolve?url=http://soundcloud.com/apps/{appName}
With this, you will get your app id.
(For more on Resolver, can refer to the link : https://github.com/soundcloud/api/wiki/12-Resolver)
Now, you can get tracks created with your app like this:
http://api.soundcloud.com/apps/{app-id}/tracks
For the browser look, it is to be customised on your own. Its not a standard from SoundCloud.

How to add a link (Like, comment) at the facebook app wall post

I have a Facebook application where I am using it in Windows phone 7 application.
I am done with share on Facebook option through my mobile application. I want to add an extra link at the bottom of my application wall post (beside the like and comment links present)
How can I achieve this? Which setting need to be set in the application settings?
The docs for integrating share functionality are at http://developers.facebook.com/docs/share.
However:
We don't recommend the Share button
for new developers. If you aren't
already using the Share button, we
recommend you migrate to the Like
button and Open Graph protocol instead
of Share for sharing pages from your
website. The Like button is simpler to
user and is the recommended solution
moving forward.
Because this is implemented in HTML & JS with Facebook's own scripts you'de need to look at usingt a WebBrowserr control to embed this funcitonality on your page.