1 / 20

RateMe 2.0

RateMe 2.0. Pirmin Schürmann, Thomas Junghans, HSZ-T. Ablauf. Präsentation des Konzepts Demonstration der laufenden Software Fazit der gesammelten Erkenntnisse Fragen aus dem Publikum / Diskussion. Konzept. RateMe (1.0). RateMe 2.0. Konzept.

ovid
Download Presentation

RateMe 2.0

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. RateMe 2.0 Pirmin Schürmann, Thomas Junghans, HSZ-T

  2. Ablauf • Präsentation des Konzepts • Demonstration der laufenden Software • Fazit der gesammelten Erkenntnisse • Fragen aus dem Publikum / Diskussion

  3. Konzept RateMe (1.0) RateMe 2.0

  4. Konzept • Suchen und Bewertenvon Restaurants (via Qype und OAuth) • Optimiert für Mobilgeräte • Benutzen von HTML5 Geolocation

  5. Demonstration http://rateme2.heroku.com

  6. Learnings • Qype API Schreibzugriff • OAuth Tanz (API Authentication) • Google Maps API (jQueryPlugin) • Rails, RESTful und Routes • User-generatedContent (Qype)

  7. API • Liefert Standorte abhängig von • Adresse • Kategorie • Name • Geodaten • Bewertungen möglich • Bilder hochladen • Wird von Google verwendet • Schreibzugriff mittels Oauth • RESTful

  8. OAuth

  9. http://farm2.static.flickr.com/1259/1092087510_d61a7dcc85_o.pnghttp://farm2.static.flickr.com/1259/1092087510_d61a7dcc85_o.png Warum OAuth?

  10. Password Anti-Pattern • Passwords are not confetti • Pleasestopthrowingthemaround

  11. Was ist OAuth? • Ein simpler offener Standard für sichere API Authentifizierung für Desktop und Web Applikationen.

  12. OAuth Begriffe • EndUser = Nutzer, der Inhalte teilen möchte • ProtectedResource= der Inhalt • Service Provider = Ort der Inhalte • Consumer = Applikation, die Inhalte anfordert • Tokens = Ersatz für Login und Passwort

  13. The Love Triangle Enduser Service Provider Consumer Application

  14. OAuth Flow

  15. OAuth Rails Code 1: consumer = OAuth::Consumer.new('api_key', 'api_secret', { :site => http://api.qype.com, :authorize_url => http://www.qype.com/mobile/authorize})  2: request_token = consumer.get_request_token( {:oauth_callback => <URL>})  3: redirect_to @request_token.authorize_url  Redirect zurück auf die Callback URL  4: access_token = request_token.get_access_token 5: request =access_token.post( '/place/123/reviews',<XML>)

  16. Google MapjQueryPlugin • http://gmap.nurtext.de/ $("#map").gMap({ markers: [{ latitude: 47.660937, longitude: 9.569803, icon: { image : '/images/arrow.png', shadow : false, iconsize : [39, 34], shadowsize : false, iconanchor : [11, 34] } }], zoom: 13 });

  17. RESTful & RailsRoutes • http://api.qype.com/v1/places • http://api.qype.com/v1/places/42 • CRUD vs SQL vs HTTP

  18. User-GeneratedContent • Inhalte die vom Enduser eingegeben werden • Bewertungen, Kommentare, neue Locations und Fotos • Andere Beispiele: Twitter, Facebook, Flickr, Youtube, MySpace, SoundCloud

  19. Mobileapp • Dank iPhone und Android sind mehr User mit dem Mobiltelefon im Internet • Immer und überall online (fast!) • Location-basedServices • RateMe nutzt diese Vorteile

  20. RateMe 2.0 • Fragen?

More Related