Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

33
votes
6answers
3k views

Facebook Callback appends '#_=_' to Return URL

Facebook callback has started appending '#_=_' hash underscore to the Return URL Does anyone know why? What is the solution?
8
votes
2answers
755 views

What's the difference between BeginConnect and ConnectAsync?

What is the difference between BeginConnect and ConnectAsync? Subsequently, what is the difference between BeginDisconnect and DisconnectAsync? The ConnectAsync documentation states: "Begins an ...
8
votes
3answers
7k views

Java URLConnection Timeout

I am trying to parse an XML file from an HTTP URL. I want to configure a timeout of 15 seconds if the XML fetch takes longer than that, I want to report a timeout. For some reason, the ...
7
votes
4answers
910 views

Authentication Fails with Facebook App Installed (iOS)

I've just started seeing a problem with Facebook Connect authentication. If I have version 3.4.4 of the iOS app installed, my delegate's fbDidNotLogin method gets called with an error message of "The ...
6
votes
3answers
693 views

iOS Facebook connect not working when user has FB's app installed?

Has anyone else had this problem? I'm getting this error when trying to authorize a user via FB, I think I've isolated it only when a user has installed the Facebook app: ...
6
votes
4answers
1k views

Can't upload screenshots for my application in iTunes Connect

I try to change the screenshots of my application due to an update but apple gives me error: A network timeout error occurred. Please try again later. Any help?
6
votes
3answers
12k views

API Key Error in Facebook Connect (javascript sdk)

I am trying to implement Facebook Connect on a website. I am trying to work with Javascript SDK of Facebok. I am new to it and unfortunately most of links provided in Facebook WIKI are out of date... ...
5
votes
2answers
69 views

How to do customer/client style subdomains using Node and Express

How does one allow customers to access a SaaS using their organization name in the domain? For example, a web app, example.com, may have 2 customers, OrgA and OrbB. Once logged in, each customer is ...
5
votes
3answers
72 views

How does this work? Optional first argument used in Express (err, req, res, next) or (req, res, next)

With Express / Connect I can set up an middleware function in either of the formats: function(req, res, next) // first argument will be a request Or function(err, req, res, next) // first ...
5
votes
3answers
7k views

Node.js - cannot find module

I'm using Node Boilerplate and it all worked fine until I decided create another project on top of it(in another dir). Now I have exactly the same code base(this project AS IS) in two different ...
5
votes
1answer
457 views

Regenerate session IDs with Nodejs Connect

I'm using a Node.js server and I'm developing with the Connect framework. I'm trying to regenerate SIDs after a given interval to avoid session fixation. There's a method called req.session.regenerate ...
5
votes
1answer
1k views

How is an error reported from async socket connect?

I'm connecting a socket asynchronously (O_NONBLOCK + connect). POSIX standard specifies that after socket has been connected is should signal the event by making the file descriptor for the socket ...
4
votes
1answer
92 views

Apache ProxyRemote with Proxy-Authorization (over connect/HTTPS)

It's easy to use the "RequestHeader append Proxy-Authorization" to create a forward proxy with no authentication that bounce over a password protected one. But this header is not append to CONNECT ...
4
votes
1answer
822 views

Connect / node.js - creating a simple server

I'm trying to get connect / node.js to work together nicely and simply. I have the following (in coffeescript) connect = require('connect') io = require('socket.io') server = connect.createServer( ...
4
votes
3answers
2k views

How can I configure multiple sub domains in Express.js or Connect.js

I am used to working on httpd ( Apache ) which provides a way to configure subdomains which is mapped to a directory. How can I do the same thing in Connect.js/Express.js ? I see that the only thing ...
4
votes
1answer
1k views

How to use facebook connect on mobile web application using the OAuth Dialog

Now I'm developing a mobile web application using facebook connect, but I am having problems with the OAuth Dialog. I use the following facebook documents for my reference: ...
4
votes
3answers
1k views

Strange node.js error: TypeError: Object #<Object> has no method 'on'

I'm trying to run a simple screen scraping app in node.js. The code is posted here: https://github.com/anismiles/jsdom-based-screen-scraper ...
4
votes
3answers
4k views

node.js connect-auth app? example (user registration / user / session management)

I'm trying to get the hang of node.js and am looking for an authentication example. Hopefully with connect-auth and using http digest with hash and salt. I watched this but it doesn't seem very ...
4
votes
2answers
2k views

Facebook Connect iPhone custom publish stream

I just downloaded the Facebook SDK for iOS because I need to be able to publish custom streams to user's Facebook feeds. The sample app has a method called publishStream:(id)sender that appears to set ...
4
votes
2answers
298 views

How can I tell if I sent a UDP packet to an open port?

I am making a C program in which I need to check for opened UDP ports on the destination computer. Because UDP is connectionless, I can't check the return value of connect() like I can with TCP. ...
4
votes
1answer
164 views

Connecting nodes in a tree

A hypotetical question. Say I'm given a tree T and a list of pair of nodes (x, y) in T. I'm asked how many of the pairs I can connect simotaneously (connect x with y) using each edge in T at most ...
4
votes
1answer
868 views

node.js + connect 404 error

I just started learning node.js. I have following (server) sample: var app = require("express").createServer(); app.listen(80); function fail(req, res, next) { setTimeout(next, 10); } function ...
4
votes
2answers
1k views

how do i retrieve data from SQLite to VB6?

i am using SQLite3 ODBC Driver as my connection string, Dim conn As ADODB.Connection Set conn = New ADODB.Connection Dim rs As New ADODB.Recordset Set conn = New ADODB.Connection ...
3
votes
1answer
106 views

coffeescript, jade, stylus -> js, css asset manager? node.js

I work in coffeescript, jade and stylus. My application serves two different "one page apps". For these apps I serve all asset in the initial payload. I want to group, compile, and concatenate all ...
3
votes
1answer
84 views

What does Connect.js methodOverride do?

Looking at the Connect.js very terse documentation I now know that methodOverride "Provides faux HTTP method support." What does that mean? The obvious Google search is less than helpful. Also, why ...
3
votes
2answers
207 views

Check each node.js request for authentication credentials

I'm using node.js with Express and connect-auth to authenticate users. This is the verification when requesting /index: if(req.isAuthenticated()) { res.redirect('/dashboard'); } else { ...
3
votes
2answers
36 views

Can I construct a php page to run a query check against 30 mysql databases?

I host at hostgator and have about 30 mysql databases (all different websites that sit on the same server). For the last year.. no problems and suddenly, the last 2 days, I've seen 5 - 10 of these ...
3
votes
2answers
354 views

iTunes Connect: App name with special characters (german 'umlaute')

Today i wanted to submit a new german app with an 'umlaut' in app name: "Börse". There are plenty of Apps in the AppStore with special characters "Diät, Führerschein" etc. When i enter the app name a ...
3
votes
3answers
237 views

Do I need to support ssl on my site that allows login through facebook connect

My site allows users to login through facebook coonect. Do I need to support ssl on my site by Oct 1? Will greatly appreciate your input. Thanks, cody
3
votes
2answers
752 views

Express js body parser not working?

I have the following in my node server using express (truncated to the important parts): var app = express.createServer(); app.all(/test/,function(req,res){ console.log(req.headers); ...
3
votes
3answers
212 views

How to connect an Oracle Database to Mathematica?

I am trying to connect an Oracle database to Mathematica 8. Another question already says how it can be done in for a MySQL database but it does not work for me: Needs["DatabaseLink"] AND conn = ...
3
votes
1answer
516 views

Facebook channelUrl set but connect still shows blank window in IE7

I'm facing one odd Facebook connect issue, I've set up the FB.init method with correct params as mentioned in the FB developer docs - http://developers.facebook.com/docs/reference/javascript/FB.init/ ...
3
votes
1answer
375 views

PHP pconnect and connect testing failed

<?php $connp = mysql_pconnect("localhost", "root", "password"); echo mysql_stat($connp); mysql_close($connp); if(!mysql_ping($connp)){ echo " false"; } echo "<br />"; $conn = ...
3
votes
4answers
868 views

Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2)

I am getting below error when i try to connect to mysql - Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2) Any solution for this? What might be the reason behind ...
3
votes
3answers
1k views

Is it possible to set a base URL for NodeJS app?

I want to be able to host multiple NodeJS apps under the same domain, without using sub-domains (like google.com/reader instead of images.google.com). The problem is that I'm always typing the first ...
3
votes
1answer
786 views

How to check and let a user “Like” a page programmatically from iphone application?

I am trying to integrate iphone application with facebook, and I am stuck at a point where I need to let a user "Like" a page. This is because it's only after Liking the page the user gets to write ...
3
votes
2answers
4k views

dojo.connect won't connect 'onclick' with button

I'm running into a problem using dojo.connect() to connect an 'onclick' event with this button: <button dojoType="dijit.form.Button" widgetId="inbox_button" ...
3
votes
6answers
2k views

How do i program a simple IRC bot in python?

I need help writing a basic IRC bot that just connects to a channel.. is anyone able to explain me this? I have managed to get it to connect to the IRC server but i am unable to join a channel and log ...
3
votes
2answers
334 views

Facebook Connect: unregister users with PHP library

I use the PHP library for Facebook Connect. The library is used as follows: $facebook->api_client->METHOD Here's the documentation for how to unregister users from one's Connect page: ...
3
votes
2answers
586 views

I keep getting QUIT and CONNECT HTTP methods sent to my server, what do they mean?

I keep getting the two following errors from my server, I assumed they were just bots looking for potential targets, but does anyone know specifically why I'm getting these? I'm using the ...
3
votes
1answer
448 views

Facebooker Connect and Safari 4

Seems to be a known problem, but I didn't find the solution. When your facebook app tries to perform some JS call via loading fb:iframe with JS code, Safari blocks this saying "Unsafe JavaScript ...
2
votes
1answer
33 views

What's the best way to access one Connect middleware from another?

I've written a Connect middleware where I'd like to re-use the "send" method of the "static" Connect middleware if it's installed. What's the best way to get a hold of that code in my middleware? ...
2
votes
1answer
35 views

QErrorMessage and QValidator

I'm a student programmer and I'm trying to use some of the widgets provided in Qt to control my user input. I want the error message to display exactly whats wrong with the user input so I thought ...
2
votes
2answers
71 views

QTimer::singleShot() looks for the specified slot in the given object's parent class, not the object itself

I am fairly new to Qt. I have done some simple modifications to an existing Qt application, but I haven't created any from scratch yet. I also don't have really much experience with certain aspects of ...
2
votes
1answer
166 views

Connect 1.8.0 - multipart support - formidable reporting progress - large files?

I've come across TJ Holowaychuk post on multipart support and how bodyParser now does what I used to to with formidable directly.I think it's quite handy, at the same time I am now confused on how to ...
2
votes
2answers
148 views

flash as3 drawing a line between two circles

I'm trying to draw two circles at random positions, and draw a line between those two circles - but flash doesn't seem to register the x|y coordinates of the circle in my code. How would I do this. ...
2
votes
3answers
388 views

FB.Event.subscribe('auth.login') won't triger everytime ?

<div id="fb-root"></div> <script> window.fbAsyncInit = function() { FB.init({ appId : 'MY_APP_ID', status : true, ...
2
votes
1answer
142 views

Python Connect Four game

I am currently working on making a Python version of the game Connect Four. It is going to be pretty basic, using Tkinter for the interface. I think I have most of the code laid out and I'm not ...
2
votes
2answers
230 views

Bluetooth: program stuck at connect() method

I'm programming a simple Bluetooth client to send and receive text messages throught RFCOMM as a serial port. I had a look at the Android SDK tutorials and did it in the same way: an Activity which ...
2
votes
3answers
299 views

Preparing client side Coffeescript: compiling, uglifying gzipping

On server side I am using Connect and Socket.IO. I want to serve my client side code (also CofeeScript) to be compiled (to JavaScript), uglyfied and gzipped. I looked for Conenct middleware to do this ...

1 2 3 4 5 10