Discussions
IRC
Sign In
twaddington
Activity
Discussions
Comments
65
Is it possible to fire trigger on locations which are created by web app n notify using Android app?
Have you tried putting the device in the higher-accuracy "Logging" profile? I would try testing the triggers in that mode and make sure they're working. Let us know if that works and we can then help you troubleshoot further.
Comment by
twaddington
June 2012
permalink
Is it possible to fire trigger on locations which are created by web app n notify using Android app?
You were able to trigger the callback manually with the 'message/send' API endpoint correct? It could be that your triggers are too small to be caught by the Android device. What radius have you set your triggers to?
Comment by
twaddington
June 2012
permalink
Device cannot receive push notification
Are you trying to get push notifications working on an Apple or an Android device?
Comment by
twaddington
June 2012
permalink
Is it possible to fire trigger on locations which are created by web app n notify using Android app?
Are you still having trouble with the onPushMessageReceived callback?
Comment by
twaddington
June 2012
permalink
Create trigger doesn't work
The trigger/list API method will only return a list of triggers for a given place or layer: http://developers.geoloqi.com/api/trigger/list I don't believe there is an API method that will currently return triggers created by a specific user. …
Comment by
twaddington
June 2012
permalink
Has History stopped working?
You're right, it appears that button has broken. Working on a fix now!
Comment by
twaddington
June 2012
permalink
onPushMessageReceived() not called in Android app.
Great feedback. We'll take that into account when we're revising those tutorials. Thanks!
Comment by
twaddington
May 2012
permalink
onPushMessageReceived() not called in Android app.
We're working hard to improve our documentation and definitely value your feedback! Can you list the pages of documentation you consulted before posting here? A list of URLs would be helpful. EDIT: I've updated our Android push messaging …
Comment by
twaddington
May 2012
permalink
onPushMessageReceived() not called in Android app.
Great! The way we test triggers in the office is to set up a route of two or three triggers. Then we go for a walk or a bike ride. Let us know if you continue to have trouble getting the trigger to fire.
Comment by
twaddington
May 2012
permalink
onPushMessageReceived() not called in Android app.
Also, what sender account are you using? You should have specified one in your geoloqi.properties file. You need to make sure you've followed the Google sign-up process for C2DM: https://developers.google.com/android/c2dm/signup
Comment by
twaddington
May 2012
permalink
onPushMessageReceived() not called in Android app.
If you're already in the region the trigger will most likely not fire. You'd have to exit the trigger region and re-enter. You can test push messaging directly by using the ID of the user authenticated on the device and the send/message AP…
Comment by
twaddington
May 2012
permalink
onPushMessageReceived() not called in Android app.
We made some changes to how the service is initialized, hopefully to make it easier. Please read the new credentials section of the readme and let me know if you have any more questions: https://github.com/geoloqi/Geoloqi-Android-SDK#credentials E…
Comment by
twaddington
May 2012
permalink
onPushMessageReceived() not called in Android app.
Hey thanks for your patience! We've updated the SDK and the sample app! You can check out the changes here: https://github.com/geoloqi/Geoloqi-Android-SDK https://github.com/geoloqi/Geoloqi-Android-SDK/downloads Let us know if you have a…
Comment by
twaddington
May 2012
permalink
How to notify user when he entered in particular region?
Hey thanks for your patience! We've updated the SDK and the sample app! You can check out the changes here: https://github.com/geoloqi/Geoloqi-Android-SDK https://github.com/geoloqi/Geoloqi-Android-SDK/downloads Let us know if you have any qu…
Comment by
twaddington
May 2012
permalink
How to notify user when he entered in particular region?
If you're just creating a message trigger (geonote) the SDK will handle displaying the message for you automatically. You only need to implement the onPushMessageReceived callback if you want to do something different when a push is received. …
Comment by
twaddington
May 2012
permalink
onPushMessageReceived() not called in Android app.
Hey, there's a bug in the currently posted version of the Android SDK that causes onPushMessageReceived to not be called. I have a fix for it in the upstream version of the SDK. I should be pushing that out today or tomorrow with some additiona…
Comment by
twaddington
May 2012
permalink
How to notify user when he entered in particular region?
Hey There! You can use the visual layer editor on the website to create a layer with several places. Those places can have a trigger associated to them that will fire some action when the user enters or exits that region. You then just need to subsc…
Comment by
twaddington
May 2012
permalink
General Questions
Hey Scott, Since the trigger logic can get pretty complicated it makes more sense for us to offload that processing to the server-side. However, if you're looking to implement a really basic trigger, you could consume the onLocationChanged cal…
Comment by
twaddington
April 2012
permalink
General Questions
Hey Scott, You can create a trigger via the Geoloqi API from the Android device using the runPostRequest() methods of LQSession. In the current version of the SDK there is not a way to trigger a callback on the Android device when the trigger fires…
Comment by
twaddington
April 2012
permalink
Google API 2.2 & location service
Update: We just got Android push notifications working today. Still need to clean up the API a bit on the client side, but it should be available soon!
Comment by
twaddington
April 2012
permalink
Sending a message (message.send) - how to add sms-only device?
Good question! This is not well documented, but you can use the 'account/profile' endpoint to update an existing user's account with a phone number. Alternatively, you can also provide the phone number to 'user/create' when …
Comment by
twaddington
April 2012
permalink
Wrong location when using WiFi only (no GPS)
Are you using the iPhone or Android SDK? The Geoloqi app?
Comment by
twaddington
March 2012
permalink
Geoloqi SDK
1. Yes, you'll need to create a new account for each individual. The location service will automatically create a new Anonymous user account when it starts up on a device. 2. If you start the location service with the default action it will au…
Comment by
twaddington
March 2012
permalink
Geoloqi SDK
That's correct! You need to create a new "Application" which will grant you the Application ID and Secret tokens. You'll use those to authenticate your application.
Comment by
twaddington
March 2012
permalink
Google API 2.2 & location service
We're working on building out the remaining C2DM services this week. They should be available in the Android SDK soon.
Comment by
twaddington
March 2012
permalink
place/nearby and place/list documented as GET but only work as POST
If that solves your problem please feel free to submit us a pull request on Github so we can get those changes merged back in to trunk. Thanks!
Comment by
twaddington
March 2012
permalink
Google API 2.2 & location service
The C2DM notifications are actually not fully implemented in the Android SDK yet. The device will register for a C2DM token and send it to the Geoloqi server, but we still need to update the server to send a C2D message back to the device. So if you…
Comment by
twaddington
March 2012
permalink
place/nearby and place/list documented as GET but only work as POST
Are you providing a layer_id or other arguments when you make your GET request? What does your request URL look like?
Comment by
twaddington
March 2012
permalink
Google API 2.2 & location service
Can you describe in a little more detail what you're trying to do? Knowing your goals would help me give you the best advice. Are you simply trying to leave a geonote for a device?
Comment by
twaddington
March 2012
permalink
Google API 2.2 & location service
Hey there, I'm not sure why the location would not update on an emulator running Google API 2.2 or newer. I can do some investigating. Have you tried this on a real device? Some version of the Android emulator (2.3 specifically) have some issue…
Comment by
twaddington
March 2012
permalink
More Comments
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In
Apply for Membership
About
Username
twaddington
Joined
November 2011
Visits
0
Last Active
February 2013
Roles
Member, Development Partners
Powered by Vanilla